From b3a96b013ae1b96012c1ea232db506efcc37b99a Mon Sep 17 00:00:00 2001 From: Eivind Jahren Date: Thu, 17 Aug 2023 13:29:29 +0200 Subject: [PATCH] Require numpy less than 2 As recommended in https://github.com/numpy/numpy/issues/24300 it is set to less than 2 due to upcoming breaking changes. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 303fd5e..1bb21d1 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def get_long_description() -> str: package_dir={"": "src"}, packages=find_packages(where="src"), install_requires=[ - "numpy", + "numpy<2", "scipy", "pyyaml", "pandas",