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
Due to deprecation of scipy.integrate.quadrature we get the following warning when running the tests
/Users/giadarol/xsuite_packages/xwakes/pywit/devices.py:178: DeprecationWarning: `scipy.integrate.quadrature` is deprecated as of SciPy 1.12.0and will be removed in SciPy 1.15.0. Please use`scipy.integrate.quad` instead.
i, err = integrate.quadrature(_integrand_stupakov, half_gap_small, half_gap_big,
We have to replace integrate.quadrature with integrate.quad but we need to make sure that the we use the new function properly.
The text was updated successfully, but these errors were encountered:
Due to deprecation of scipy.integrate.quadrature we get the following warning when running the tests
We have to replace
integrate.quadrature
withintegrate.quad
but we need to make sure that the we use the new function properly.The text was updated successfully, but these errors were encountered: