chore: unpin fsspec, bump to >=2026.2.0 with cloud extras#21
Open
asmithml wants to merge 1 commit intovecorel:mainfrom
Open
chore: unpin fsspec, bump to >=2026.2.0 with cloud extras#21asmithml wants to merge 1 commit intovecorel:mainfrom
asmithml wants to merge 1 commit intovecorel:mainfrom
Conversation
Author
Reproducing install verificationTo verify all three install methods resolve correctly, clone this branch and run: pippython -m venv .venv && source .venv/bin/activate
pip install -e . && python -c "import fsspec; print(fsspec.__version__)"
pip install -e ".[cloud]" && python -c "import s3fs, gcsfs; print(s3fs.__version__, gcsfs.__version__)"uvuv venv && source .venv/bin/activate
uv pip install -e . && python -c "import fsspec; print(fsspec.__version__)"
uv pip install -e ".[cloud]" && python -c "import s3fs, gcsfs; print(s3fs.__version__, gcsfs.__version__)"pixipixi install -e all
pixi run -e all python -c "import fsspec, s3fs, gcsfs; print(fsspec.__version__, s3fs.__version__, gcsfs.__version__)"All versions should be >=2026.2.0. pip/uv pull from PyPI, pixi from conda-forge. |
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.
Summary
fsspecfrom==2025.7.0to>=2026.2.0s3fsandgcsfsfrom==2025.7.0to>=2026.2.0[project.optional-dependencies]withs3,gcs, andcloudextras for pip/uv users-e dev)Why
The exact pin on
fsspec==2025.7.0(along with matchings3fs/gcsfspins) was blocking downstream tools from upgrading dependencies. No documented reason for the pin exists, and the project only uses stable public APIs (AbstractFileSystem,HTTPFileSystem,LocalFileSystem) which have not changed across versions.Validation
fsspec==2026.2.0cc @m-mohr