From 0a0665fc57ba19bd7d549d1d0d53271e58519636 Mon Sep 17 00:00:00 2001 From: Thierry RAMORASOAVINA Date: Thu, 25 Jun 2026 23:25:30 +0200 Subject: [PATCH 1/2] Remove a check in the Conda recipe to fix the build --- packaging/conda/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/conda/meta.yaml b/packaging/conda/meta.yaml index 813d75f4..f2d630de 100644 --- a/packaging/conda/meta.yaml +++ b/packaging/conda/meta.yaml @@ -29,7 +29,7 @@ requirements: - setuptools run: - python >={{ python_min }} - - khiops-core =11.0.1rc2 + - khiops-core =11.0.1rc.2 - pandas >=2.3.3,<4.0.0 - scikit-learn >=1.7.2,<1.9.0 run_constrained: @@ -42,7 +42,7 @@ test: imports: - khiops commands: - - pip check + # disable the old 'pip check' to avoid a failure because the project dependencies are missing - kh-status - kh-samples --help - kh-download-datasets --help From e2bb6d47f6c3d4988f61b6b72a6fb75fca7d9d7a Mon Sep 17 00:00:00 2001 From: Thierry RAMORASOAVINA Date: Fri, 26 Jun 2026 13:31:00 +0200 Subject: [PATCH 2/2] Fix wrong `FilesystemResource::create_parent` and ``AzureStorageResourceMixin::create_parent` definitions --- khiops/core/internals/filesystems.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/khiops/core/internals/filesystems.py b/khiops/core/internals/filesystems.py index c83a21cb..287ea395 100644 --- a/khiops/core/internals/filesystems.py +++ b/khiops/core/internals/filesystems.py @@ -444,7 +444,7 @@ def create_child(self, file_name): """ @abstractmethod - def create_parent(self, file_name): + def create_parent(self): """Creates a resource representing the parent of this instance Returns @@ -812,7 +812,7 @@ def __init__(self, uri): def create_child(self, file_name): return create_resource(_child_uri_info(self.uri_info, file_name).geturl()) - def create_parent(self, file_name): # pylint: disable=unused-argument + def create_parent(self): return create_resource(_parent_uri_info(self.uri_info).geturl()) def _uri_parts(self):