From 2805ae03c58a58bf3be5b788dcca3fddd5413951 Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Fri, 2 Aug 2024 15:33:52 +0200 Subject: [PATCH] temporarily limit numpy version to <2 (#365) --- environment.yaml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environment.yaml b/environment.yaml index ad1bbfbd..4c2837c2 100644 --- a/environment.yaml +++ b/environment.yaml @@ -10,7 +10,7 @@ channels: - defaults dependencies: - python>=3.6 -- numpy +- numpy<2 - scipy - pandas>=0.25 - xarray>=0.16.2 diff --git a/setup.py b/setup.py index a2841620..cff82621 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ include_package_data=True, python_requires=">=3.6", install_requires=[ - "numpy", + "numpy<2", "scipy", "pandas>=0.25", "bottleneck",