support numpy 2.0

This commit is contained in:
Martin Bubel 2025-06-10 18:31:21 +02:00
parent acdd03d3ed
commit c1dea43786
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,8 @@
# Changelog # Changelog
## Unreleased ## Unreleased
* naive removal of upper scipy and numpy limit [MartinBubel]
* fix pickle and deep copy for classification models inheriting from EP #1108 [olamarre] * fix pickle and deep copy for classification models inheriting from EP #1108 [olamarre]
* update prior `__new__` methods #1098 [MartinBubel] * update prior `__new__` methods #1098 [MartinBubel]

View file

@ -140,14 +140,14 @@ except ModuleNotFoundError:
ext_mods = [] ext_mods = []
install_requirements = [ install_requirements = [
"numpy>=1.7,<2.0.0", "numpy>=1.7",
"six", "six",
"paramz>=0.9.6", "paramz>=0.9.6",
"cython>=0.29", "cython>=0.29",
] ]
# 'some-pkg @ git+ssh://git@github.com/someorgname/pkg-repo-name@v1.1#egg=some-pkg', # 'some-pkg @ git+ssh://git@github.com/someorgname/pkg-repo-name@v1.1#egg=some-pkg',
matplotlib_version = "matplotlib==3.3.4" 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( setup(
name="GPy", name="GPy",