Skip to content

Commit

Permalink
Merge pull request #318 from euroargodev/fix-317
Browse files Browse the repository at this point in the history
Fix for fsspec > 2023.10.0
  • Loading branch information
gmaze authored Apr 16, 2024
2 parents 35f3c0d + 388badb commit 55e0829
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion argopy/tests/test_stores_fsspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def test_open_dataset(self, store):

def test_open_dataset_error(self, store):
uri = "dac/csiro/5900865/5900865_prof_error.nc"
with pytest.raises(ftplib.error_perm):
with pytest.raises((FileNotFoundError, ftplib.error_perm)):
assert isinstance(store.open_dataset(uri), xr.Dataset)

params = [
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py3.8-all-free.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
# CORE:
- aiohttp
- erddapy
- fsspec < 2023.12.0
- fsspec
- netCDF4
- packaging
- requests
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py3.8-core-free.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
# CORE:
- aiohttp
- erddapy
- fsspec < 2023.12.0
- fsspec
- netCDF4
- packaging
- requests
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py3.9-all-free.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
# CORE:
- aiohttp
- erddapy
- fsspec < 2023.12.0
- fsspec > 2023.10.0
- netCDF4
- packaging
- requests
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py3.9-core-free.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
# CORE:
- aiohttp
- erddapy
- fsspec < 2023.12.0
- fsspec > 2023.10.0
- netCDF4
- packaging
- requests
Expand Down

0 comments on commit 55e0829

Please sign in to comment.