Skip to content

Commit

Permalink
Hardcode Rewind (undo dependabot, part 3)
Browse files Browse the repository at this point in the history
Ensure that the requirements are equal or greater than, following suggestion in #47
  • Loading branch information
dgilford authored Aug 10, 2022
1 parent e768228 commit 36b4164
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,8 @@
python_requires='>=3.7',
# TODO: Update install requirements and corresponding documentation
install_requires=[
"xarray==0.16.2",
"numba==0.51.2",
"numpy==1.19.5",
"xarray>=0.16.2",
"numba>=0.51.2",
"numpy>=1.19.5",
],
)



'1.19.5'
>>> import numba
>>> numba.__version__
'0.51.2'
>>> import xarray as xr
xr>>> xr.__version__
'0.16.2'

0 comments on commit 36b4164

Please sign in to comment.