From b9570dd97220866425cf4ce42c054c2e050c0e96 Mon Sep 17 00:00:00 2001 From: eccabay Date: Thu, 27 Jun 2024 09:16:24 -0400 Subject: [PATCH] Pin scipy due to dropping 3.10 --- .github/meta.yaml | 2 +- core-requirements.txt | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/meta.yaml b/.github/meta.yaml index 26b4c2fd3a..41e1e34aed 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -27,7 +27,7 @@ outputs: - numpy >=1.22.0 - pandas >=1.5.0, <2.1.0 - dask >=2022.2.0, !=2022.10.1 - - scipy >=1.5.0 + - scipy >=1.5.0, <1.14.0 - scikit-learn >=1.3.2 - scikit-optimize >=0.9.0 - statsmodels >=0.12.2 diff --git a/core-requirements.txt b/core-requirements.txt index 1d3dab4b78..acfa71e90d 100644 --- a/core-requirements.txt +++ b/core-requirements.txt @@ -1,6 +1,6 @@ numpy>=1.21.0 pandas>=1.5.0, <2.1.0 -scipy>=1.5.0 +scipy>=1.5.0, <1.14.0 scikit-learn>=1.3.2 scikit-optimize>=0.9.0 pyzmq>=21.0.2 diff --git a/pyproject.toml b/pyproject.toml index 4f3a9bdcda..ff62e505e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ requires-python = ">=3.9,<4" dependencies = [ "numpy >= 1.22.0", "pandas >= 1.5.0, <2.1.0", - "scipy >= 1.5.0", + "scipy >= 1.5.0, >1.14.0", "scikit-learn >= 1.3.2", "scikit-optimize >= 0.9.0", "pyzmq >= 21.0.2",