Skip to content

Commit

Permalink
MNT: Add xarray as a hard dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed May 14, 2018
1 parent f9cca22 commit ee58f3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -48,7 +48,7 @@ matrix:
include:
- python: 2.7
env:
- VERSIONS="numpy==1.10.0 matplotlib==1.4.0 scipy==0.14.0 pint==0.8"
- VERSIONS="numpy==1.10.0 matplotlib==1.4.0 scipy==0.14.0 pint==0.8 xarray==0.9.0"
- TASK="coverage"
- TEST_OUTPUT_CONTROL=""
- python: 3.4
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -51,15 +51,15 @@

python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=['matplotlib>=1.4', 'numpy>=1.10.0', 'scipy>=0.14',
'pint>=0.8', 'enum34;python_version<"3.4"'],
'pint>=0.8', 'xarray>=0.9.0', 'enum34;python_version<"3.4"'],
extras_require={
'cdm': ['pyproj>=1.9.4'],
'dev': ['ipython[all]>=3.1'],
'doc': ['sphinx>=1.4', 'sphinx-gallery', 'doc8', 'recommonmark',
'netCDF4!=1.4', 'pandas'],
'examples': ['cartopy>=0.13.1', 'pandas', 'xarray'],
'test': ['pandas', 'pytest>=2.4', 'pytest-runner', 'pytest-mpl', 'pytest-flake8',
'cartopy>=0.13.1', 'xarray', 'flake8>3.2.0', 'flake8-builtins!=1.4.0',
'netCDF4!=1.4'],
'examples': ['cartopy>=0.13.1'],
'test': ['pytest>=2.4', 'pytest-runner', 'pytest-mpl', 'pytest-flake8',
'cartopy>=0.13.1', 'flake8>3.2.0', 'flake8-builtins!=1.4.0',
'flake8-comprehensions', 'flake8-copyright',
'flake8-docstrings', 'flake8-import-order', 'flake8-mutable',
'flake8-pep3101', 'flake8-print', 'flake8-quotes',
Expand Down

0 comments on commit ee58f3a

Please sign in to comment.