Skip to content

Commit

Permalink
upath: exclude fsspec==2024.3.1 for now
Browse files Browse the repository at this point in the history
* _strip_protocol signature changes break local fs tests
* Windows URI parsing has issues
  • Loading branch information
ap-- committed Apr 1, 2024
1 parent 851e58d commit a5210f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ python_requires = >=3.8
zip_safe = False
packages = find:
install_requires=
fsspec>=2022.1.0
fsspec >=2022.1.0,!=2024.3.1

[options.extras_require]
tests =
Expand Down
2 changes: 1 addition & 1 deletion upath/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DummyTestFS(LocalFileSystem):
root_marker = "/"

@classmethod
def _strip_protocol(cls, path, **_):
def _strip_protocol(cls, path):
path = stringify_path(path)
if path.startswith("mock://"):
path = path[7:]
Expand Down

0 comments on commit a5210f4

Please sign in to comment.