From 1739cd7dbe7f6d1ae6e550efdfeb47191ce13da7 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sun, 14 Jan 2024 19:30:26 +0100 Subject: [PATCH] fix maximum scipy version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c9b11c9f..ae4e8429 100644 --- a/setup.py +++ b/setup.py @@ -147,7 +147,7 @@ install_requirements = [ ] # 'some-pkg @ git+ssh://git@github.com/someorgname/pkg-repo-name@v1.1#egg=some-pkg', matplotlib_version = "matplotlib==3.3.4" -install_requirements += ["scipy>=1.3.0"] +install_requirements += ["scipy>=1.3.0,<1.12.0"] setup( name="GPy",