Handle tables via pip as pandas extra instead of separate conda install (and update installation instructions)#3214
Open
deruyter92 wants to merge 4 commits intomainfrom
Open
Handle tables via pip as pandas extra instead of separate conda install (and update installation instructions)#3214deruyter92 wants to merge 4 commits intomainfrom
deruyter92 wants to merge 4 commits intomainfrom
Conversation
2 tasks
Open
2 tasks
2 tasks
C-Achard
approved these changes
Feb 26, 2026
Collaborator
There was a problem hiding this comment.
Let's try and get this merged & released ASAP; let me know if anything needs to be updated/released on the napari-DLC side as well and I will work on that @deruyter92
Collaborator
|
Is the failing CI a drift due to the requirements.txt file ? This may need adjustment in #3184 as well |
Collaborator
Author
|
@C-Achard the failing CircleCI is a result of the caching setup in the workflow: by default it loads the cached environment, and compares it against the new requirements, failing if there is a mismatch. I verified that removing the caching step from the CircleCI resolves the problem. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation:
The separate conda installation of pytables, and it's potential mismatch with the pandas version has been causing some problems in the past (e.g. see recent issues and PRs #3111, #3162, #3163, #3171). Installing pytables from PyPI as dependency of pandas via the [hdf5] extra, would resolve these issues.
PR #3184 already addresses this issue by updating the pyproject.toml to the newest PEP standards, but untill that PR is merged, this could PR provide a bridging alternative. Also, the installation instructions with respect to the tables requirement need to be adjusted anyway, so this is addressed in the current PR.
Changes:
NOTE: CircleCI is expected to fail on this PR, since the current workflow is set up to explicitly fail when the requirements.txt change with respect to the cached environment. I verified that the tests pass when I temporarily remove this caching restriction (succeeds👍).
I am keeping the CI workflow in the original state now. @MMathisLab Let me know in case you prefer me to remove the caching restriction for the future (see example in commit bc3ff85).