Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimum xarray version to 0.13.0 #106

Merged
merged 1 commit into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
- "3.7"
env:
- PIP_PACKAGES="setuptools pip pytest pytest-cov coverage codecov boutdata xarray!=0.14.0"
- PIP_PACKAGES="setuptools pip pytest pytest-cov coverage codecov boutdata xarray==0.12.2 dask==1.0.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.1 netcdf4==1.4.2 Pillow==6.1.0" # test with oldest supported version of packages
- PIP_PACKAGES="setuptools pip pytest pytest-cov coverage codecov boutdata xarray==0.13.0 dask==1.0.0 natsort==5.5.0 matplotlib==3.1.1 animatplot==0.4.1 netcdf4==1.4.2 Pillow==6.1.0" # test with oldest supported version of packages
install:
- pip install --upgrade ${PIP_PACKAGES}
- pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Requirements
- :py:mod:`xbout` requires Python 3

- The following modules are also needed:
- ``xarray >= v0.12.2``
- ``xarray >= v0.13.0``
- ``dask[array] >= 1.0.0``
- ``natsort >= 5.5.0``
- ``matplotlib >= 2.2``
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
xarray >= 0.12.2
xarray >= 0.13.0
dask[array] >= 1.0.0
natsort >= 5.5.0
matplotlib >= 3.1.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
license="Apache",
python_requires='>=3.6',
install_requires=[
'xarray>=v0.12.2',
'xarray>=v0.13.0',
'dask[array]>=1.0.0',
'natsort>=5.5.0',
'matplotlib>=3.1.1',
Expand Down