setting upper limit on scipy again

This commit is contained in:
Martin Bubel 2025-06-10 18:50:51 +02:00
parent 8791afdd3d
commit eb0a3897b2
2 changed files with 3 additions and 3 deletions

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.14"] #
setup(
name="GPy",