From 70e8ca7405755032e749c4dae31728546420f56b Mon Sep 17 00:00:00 2001 From: Luigi Bonati Date: Sun, 9 Jul 2023 23:21:18 +0200 Subject: [PATCH] added scipy version requirement (#84) --- devtools/conda-envs/test_env.yaml | 1 + docs/requirements.yaml | 1 + pyproject.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/devtools/conda-envs/test_env.yaml b/devtools/conda-envs/test_env.yaml index ae23143a..4049ef70 100644 --- a/devtools/conda-envs/test_env.yaml +++ b/devtools/conda-envs/test_env.yaml @@ -22,6 +22,7 @@ dependencies: - lightning - matplotlib - scikit-learn + - scipy<1.11 # Pip-only installs - pip: diff --git a/docs/requirements.yaml b/docs/requirements.yaml index 3efdaa55..0a074ec5 100644 --- a/docs/requirements.yaml +++ b/docs/requirements.yaml @@ -22,6 +22,7 @@ dependencies: - nbsphinx - ipython - ipykernel + - scipy<1.11 # Pip-only installs - pip: diff --git a/pyproject.toml b/pyproject.toml index 4c66c2a0..e8364f80 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ dependencies = [ "numpy", "pandas", "matplotlib", + "scipy<1.11.0", "KDEpy" ]