Merge pull request #1067 from rameezrz25/patch-1

Support for scipy<=1.12.0
This commit is contained in:
Martin Bubel 2024-03-23 20:56:36 +01:00 committed by GitHub
commit f980f4a5b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",