Skip to content

Commit

Permalink
fix(2D KDE): pin scipy
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
davecwright3 committed Jan 16, 2025
1 parent 661da5c commit 06bd8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 06bd8e4

Please sign in to comment.