From 3a8be66cecc694b9280fea3fb96c32a9974b43b5 Mon Sep 17 00:00:00 2001 From: Ben Preston <144227999+ben-l-p@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:24:57 +0100 Subject: [PATCH] Lower NumPy and SciPy version for install --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2dd39ab92..ebc708e7f 100644 --- a/setup.py +++ b/setup.py @@ -130,10 +130,10 @@ def run(self): # ], python_requires=">=3.8", install_requires=[ - "numpy", + "numpy<2.0", "configobj", "h5py", - "scipy", + "scipy<1.14.0", "sympy", "matplotlib", "colorama",