Skip to content

Commit

Permalink
Added some upper limits on dependencies.
Browse files Browse the repository at this point in the history
Pandas 2.0 disallows some indexing operations that ginput currently
relies on, so we have to limit Pandas to < 2.0. That then means we need
to limit numpy to < 2.0.0, or we get binary incompatibilities. Then I
decided to limit scipy and netCDF just to be safe.
  • Loading branch information
Joshua Laughner committed Dec 19, 2024
1 parent 3bd3f7d commit f8bf0e4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
'h5py>=2.9.0',
'jplephem>=2.9',
'matplotlib>=3.0.3',
'netCDF4>=1.4.2',
'pandas>=0.24.2',
'netCDF4>=1.4.2,<2.0.0',
'numpy>=1.23.0,<2.0.0',
'pandas>=0.24.2,<2.0.0',
'pydap>=3.2.2',
'python-dateutil>=2.8.2',
'requests>=2.14.2',
'scipy>=1.2.1',
'scipy>=1.2.1,<2.0.0',
'sgp4>=1.4',
'skyfield>=1.10',
'xarray>=0.12.1',
Expand Down

0 comments on commit f8bf0e4

Please sign in to comment.