You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think you've misunderstood: scipy.integrate.simps is the thing that is deprecated, not scipy itself.
Basically, versions of scipy<1.14 had a function called scipy.integrate.simps. Versions >=1.14 do not. Instead, they only have scipy.integrate.simpson.
Scipy 1.14 deprecated
integrate.simps
in favor ofintegrate.simpson
. This means that Scipy >= 1.14 errors on the following:kCSD-python/kcsd/validation/ValidateKCSD.py
Line 11 in 21418c5
Easy fix, happy to PR if you want.
The text was updated successfully, but these errors were encountered: