From 602c4a2209f2c88a981a3ab2a527160961c8db6b Mon Sep 17 00:00:00 2001 From: "Christopher M. Cantalupo" Date: Thu, 20 Jun 2024 11:29:34 -0700 Subject: [PATCH] Explicitly disallow pandas 2.0 due to binary incompatibilty with 1.x versions Signed-off-by: Christopher M. Cantalupo --- geopmpy/pyproject.toml | 2 +- geopmpy/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/geopmpy/pyproject.toml b/geopmpy/pyproject.toml index 15353113c0..110659a6b1 100755 --- a/geopmpy/pyproject.toml +++ b/geopmpy/pyproject.toml @@ -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', diff --git a/geopmpy/requirements.txt b/geopmpy/requirements.txt index 2120649553..419f60d3c0 100644 --- a/geopmpy/requirements.txt +++ b/geopmpy/requirements.txt @@ -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