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
It appears that since scipy 1.12.0, the trapz function, along with several other functions, is deprecated.
This causes an issue loading waveforms with one of the more recent scipy versions. In particular, when doing self.download_waveform_data(sim_name), it will eventually call scipy.integrate.trapz(...) / (tf - ti) in radiation.py.
I suppose either updating these scipy functions or restricting the scipy version will solve this issue.
The text was updated successfully, but these errors were encountered:
It appears that since scipy 1.12.0, the
trapz
function, along with several other functions, is deprecated.This causes an issue loading waveforms with one of the more recent
scipy
versions. In particular, when doingself.download_waveform_data(sim_name)
, it will eventually callscipy.integrate.trapz(...) / (tf - ti)
inradiation.py
.I suppose either updating these
scipy
functions or restricting thescipy
version will solve this issue.The text was updated successfully, but these errors were encountered: