Skip to content

Commit

Permalink
Explicitly disallow pandas 2.0 due to binary incompatibilty with 1.x …
Browse files Browse the repository at this point in the history
…versions

Signed-off-by: Christopher M. Cantalupo <christopher.m.cantalupo@intel.com>
  • Loading branch information
cmcantalupo committed Jun 20, 2024
1 parent ecc0764 commit 602c4a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geopmpy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ classifiers = ["Development Status :: 5 - Production/Stable",
dependencies = ['cffi>=1.14.5',
'cycler>=0.11.0',
'natsort>=8.1.0',
'numpy>=1.19.5',
'numpy>=1.19.5,<2.0.0',
'pandas>=1.1.5',
'psutil>=5.8.0',
'pyyaml>=6.0.0',
Expand Down
2 changes: 1 addition & 1 deletion geopmpy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cffi>=1.14.5
cycler>=0.11.0
natsort>=8.1.0
numpy>=1.19.5
numpy>=1.19.5,<2.0.0
pandas>=1.1.5
psutil>=5.8.0
pyyaml>=6.0.0
Expand Down

0 comments on commit 602c4a2

Please sign in to comment.