From 06bd8e4fd043c583dd0dca7508375b66df9923e9 Mon Sep 17 00:00:00 2001 From: David Wright Date: Tue, 20 Aug 2024 15:13:22 -0700 Subject: [PATCH] fix(2D KDE): pin scipy SciPy has deprecated interp2d used in the 2D KDE method. Their suggested backwards compatible method is not actually backwards compatible because it doesn't expose the same arguments to users, like the fill value outside of the domain. The suggested new methods take different inputs, so it is unclear if they will work with the empirical distribution code. This needs to be further tested before changing interp2d. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 60263cf9..2c2d32a9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ numpy>=1.16.3 -scipy>=1.2.0 +scipy>=1.2.0,<1.14.0 ephem>=3.7.6.0 healpy>=1.14.0 scikit-sparse>=0.4.5