From be51e85158393e7bb75c358ba675c98005817576 Mon Sep 17 00:00:00 2001 From: Calum Chamberlain Date: Mon, 19 Aug 2024 15:22:58 +1200 Subject: [PATCH] Remove scipy pinning --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2bfd589f4..6cb4e6f58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # Note that this file is not explicitly used by setup.py for EQcorrscan. numpy>=1.22.2 matplotlib>=1.3.0 -scipy>=1.10.0rc1,<1.9.0 # Pinned due to scipy/obspy hanning renaming +scipy>=1.10.0 bottleneck obspy>=1.3.0 # ObsPy <1.3.0 is incompatible with numpy >= 1.22: https://github.com/obspy/obspy/issues/2912 h5py diff --git a/setup.py b/setup.py index 197f24875..312126e77 100644 --- a/setup.py +++ b/setup.py @@ -362,7 +362,7 @@ def setup_package(): build_requires = ['numpy>=1.6, <2.0'] if not READ_THE_DOCS: - install_requires = ['matplotlib>=1.3.0', 'scipy>=0.18,<1.9.0', + install_requires = ['matplotlib>=1.3.0', 'scipy>=1.10', 'bottleneck', 'obspy>=1.0.3', 'numpy>=1.12', 'h5py'] else: