From da8ea0e691f4e7b6cf0a5dabc2040919802a9032 Mon Sep 17 00:00:00 2001 From: thurinj Date: Fri, 5 Apr 2024 23:14:17 +1100 Subject: [PATCH] Update setup.py Scipy version fix to avoid conflict with obspy. (scipy.signal.hann is deprecated since scipy 1.13.0 and called in obspy). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6e4543725..46e789d58 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def run_tests(self): # (consider using a conda based installation instead) install_requires=[ "numpy", - "scipy", + "scipy<1.13.0", "pandas", "xarray", "netCDF4",