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

@ -1782,7 +1782,7 @@ typedef npy_double __pyx_t_5numpy_double_t;
*/ */
typedef npy_longdouble __pyx_t_5numpy_longdouble_t; typedef npy_longdouble __pyx_t_5numpy_longdouble_t;
/* "scipy/linalg/cython_blas.pxd":15 /* "scipy/linalg/cython_blas.pxd":17
* # The original libraries should be linked directly. * # The original libraries should be linked directly.
* *
* ctypedef float s # <<<<<<<<<<<<<< * ctypedef float s # <<<<<<<<<<<<<<
@ -1791,7 +1791,7 @@ typedef npy_longdouble __pyx_t_5numpy_longdouble_t;
*/ */
typedef float __pyx_t_5scipy_6linalg_11cython_blas_s; typedef float __pyx_t_5scipy_6linalg_11cython_blas_s;
/* "scipy/linalg/cython_blas.pxd":16 /* "scipy/linalg/cython_blas.pxd":18
* *
* ctypedef float s * ctypedef float s
* ctypedef double d # <<<<<<<<<<<<<< * ctypedef double d # <<<<<<<<<<<<<<

View file

@ -147,7 +147,7 @@ install_requirements = [
] ]
# '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.14"] #
setup( setup(
name="GPy", name="GPy",