Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions khiops/core/internals/filesystems.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):

@popescu-v popescu-v Jun 26, 2026

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd opportunistically add an automated test, perhaps in tests/test_remote_access.py, that this method behaves as expected for all drivers.

return create_resource(_parent_uri_info(self.uri_info).geturl())

def _uri_parts(self):
Expand Down
4 changes: 2 additions & 2 deletions packaging/conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would only keep the text of this comment in the commit message. Having this comment in the recipe file would IMHO seem incomprehensible later on without looking at the delta of this specific commit.

- kh-status
- kh-samples --help
- kh-download-datasets --help
Expand Down
Loading