From 1b9d924ebe5e8afda1c50c9552b0404ea7b24790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Wed, 16 Jul 2025 23:40:33 +0200 Subject: [PATCH] Update version and dependencies --- CMakeLists.txt | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2adec91..445d718 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(fimdlp LANGUAGES CXX DESCRIPTION "Discretization algorithm based on the paper by Fayyad & Irani Multi-Interval Discretization of Continuous-Valued Attributes for Classification Learning." HOMEPAGE_URL "https://github.com/rmontanana/mdlp" - VERSION 2.1.0 + VERSION 2.1.1 ) set(CMAKE_CXX_STANDARD 17) cmake_policy(SET CMP0135 NEW) diff --git a/conanfile.py b/conanfile.py index 77a3989..834b90b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -54,7 +54,7 @@ class FimdlpConan(ConanFile): self.requires("libtorch/2.7.1") def build_requirements(self): - self.requires("arff-files/1.2.0") # for tests and sample + self.requires("arff-files/1.2.1") # for tests and sample if self.options.enable_testing: self.test_requires("gtest/1.16.0")