Skip to content

Commit

Permalink
Added lower and upper version requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
smithara committed Sep 3, 2018
1 parent 112efa7 commit a9abb9c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
13 changes: 6 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Jinja2
pandas; python_version >= '3.5'
pandas<0.21; python_version == '3.4'
cdflib
tables
tqdm
xarray
Jinja2==2.10
pandas==0.23.0
cdflib==0.3.5
tables==3.4.4
tqdm==4.23.4
xarray==0.10.7
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ def read(fname):
'_wps/templates/*'
],
},
install_requires=['Jinja2',
'pandas;python_version>="3.5"',
'pandas<0.21;python_version<"3.5"',
'cdflib',
'tables',
'tqdm',
'xarray'],
install_requires=['Jinja2>=2.10, <3.0.0',
'pandas>=0.18;python_version>="3.5.0"',
'pandas<0.21;python_version<"3.5.0"',
'cdflib==0.3.5',
'tables>=3.4.4, <4.0.0',
'tqdm>=4.23.0, <5.0.0',
'xarray>=0.10.0, <0.11.0'],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)

0 comments on commit a9abb9c

Please sign in to comment.