From f8e324df1b0d6e52d62d531b9aeb210b656cf753 Mon Sep 17 00:00:00 2001 From: RAMEEZ RAZA Date: Wed, 14 Feb 2024 10:11:59 +0530 Subject: [PATCH] support for scipy<=1.12.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae4e8429..d63b6812 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,<1.12.0"] +install_requirements += ["scipy>=1.3.0,<=1.12.0"] setup( name="GPy",