|
from scipy.integrate import cumtrapz |
cumtrapz is no longer supported by scipy since version 1.14 (https://docs.scipy.org/doc/scipy/release/1.14.0-notes.html), which is causing errors in our CI (e.g., #259 ) It might have gotten past our CI before their update. Need to change it to scipy.integrate.cumulative_trapezoid.