Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaze committed Apr 13, 2022
1 parent 3531857 commit e28161a
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 29 deletions.
1 change: 1 addition & 0 deletions argopy/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@ def show_versions(file=sys.stdout, conda=False): # noqa: C901
("dask", lambda mod: mod.__version__), # This could go away from requirements ?
("toolz", lambda mod: mod.__version__),
("gsw", lambda mod: mod.__version__), # Used by xarray accessor to compute new variables
("aiohttp", lambda mod: mod.__version__),
]),
'ext.misc': sorted([
("pyarrow", lambda mod: mod.__version__),
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements/py3.7-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ dependencies:
- numpy=1.21.5
- pandas=1.3.5
- packaging=21.3
- pip=22.0.3
- pytest=7.0.1
- seaborn=0.11.2
- setuptools=59.8.0
Expand All @@ -32,6 +31,7 @@ dependencies:
- ipywidgets=7.6.5
- pyarrow=4.0.1
# Not showing up with argopy.show_versions():
- pip=22.0.3
- cfgrib=0.9.10
- black=22.1.0
- flake8=4.0.1
Expand Down
3 changes: 2 additions & 1 deletion ci/requirements/py3.7-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ dependencies:
- ipywidgets=7.5
- pandas=1.1
- numpy=1.18
- scipy=1.5
- scipy=1.5
- packaging=20.4
35 changes: 20 additions & 15 deletions ci/requirements/py3.8-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,39 @@ channels:
- conda-forge
dependencies:
- python=3.8
- xarray=2022.3.0
- scipy=1.8.0
- scikit-learn=1.0.2
- netcdf4=1.5.8

- aiohttp=3.8.1
- dask=2022.02.1
- toolz=0.11.2
- erddapy=1.2.0
- fsspec=2022.02.0
- gsw=3.4.0
- aiohttp=3.8.1
- bottleneck=1.3.4
- cartopy=0.20.2
- cftime=1.5.2
- netcdf4=1.5.8
- packaging=21.3
- scipy=1.8.0
- scikit-learn=1.0.2
- toolz=0.11.2
- xarray=2022.3.0

- distributed=2022.2.1
- pyarrow=4.0.1
- tqdm=4.63.0

- ipython=8.0.1
- cartopy=0.20.2
- ipykernel=6.9.1
- ipywidgets=7.6.5
- matplotlib=3.5.1
- seaborn=0.11.2

- bottleneck=1.3.4
- cftime=1.5.2
- numpy=1.22.2
- pandas=1.4.1
- packaging=21.3
- pip=22.0.3
- pytest=7.0.1
- seaborn=0.11.2
- setuptools=59.8.0
- zarr=2.11.0
- tqdm=4.63.0
- ipykernel=6.9.1
- ipywidgets=7.6.5
- pyarrow=4.0.1

# Not showing up with argopy.show_versions():
- cfgrib=0.9.10
- black=22.1.0
Expand Down
3 changes: 2 additions & 1 deletion ci/requirements/py3.8-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ dependencies:
- ipywidgets=7.5
- pandas=1.1
- numpy=1.18
- scipy=1.5
- scipy=1.5
- packaging=20.4
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sphinx-book-theme
# sphinx-bootstrap-theme

xarray>=0.16.1
scipy>=1.1.0
scipy>=1.5
scikit-learn>=0.23.2
dask>=2021.9.1
distributed>=2.30.0
Expand All @@ -26,7 +26,7 @@ distributed>=2.30.0
erddapy>=0.7.2
gsw>=3.4.0

fsspec>=0.7.4, <2022.3.1
fsspec>=0.7.4 #, <2022.3.1
aiohttp>=3.7.4

#matplotlib>=3.3.2
Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
xarray>=0.15.1
scipy>=1.1.0
scikit-learn<2.0 # Using 'preprocessing.LabelEncoder()' in xarray accessor, used by filters
netCDF4<1.5.9
dask>=2.9 # This could go away ?
xarray>=0.16
scipy>=1.5
scikit-learn>=0.23 #<2.0 # Using 'preprocessing.LabelEncoder()' in xarray accessor, used by filters
netCDF4>=1.5.3 #<1.5.9
dask>=2.3 # This could go away ?
toolz>=0.8.2
erddapy>=0.6 # This could go away ?
fsspec>=0.7.4
erddapy>=0.7 # This could go away ?
fsspec>=0.8
gsw<=3.4.0 # Used by xarray accessor to compute new variables, so not necessary to core functionalities
aiohttp>=3.6.2
packaging>= 20.4 # Using 'version' to make API compatible with several fsspec releases
aiohttp>=3.7
packaging>=20.4 # Using 'version' to make API compatible with several fsspec releases

0 comments on commit e28161a

Please sign in to comment.