Skip to content

Commit bdbe656

Browse files
committed
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.
1 parent 291b6ca commit bdbe656

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
numpy>=1.16.3
2-
scipy>=1.2.0
2+
scipy>=1.2.0,<1.14.0
33
ephem>=3.7.6.0
44
healpy>=1.14.0
55
scikit-sparse>=0.4.5

0 commit comments

Comments
 (0)