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
We should update the code to be compatible with Numpy 2.0
This newer version has many deprecation that prevent using pyDVL with newer versions of numpy.
For example, np.float_ was removed in the NumPy 2.0 release. We should use np.float64 instead.
We can refer to its migration guide for a complete list of changes.
The text was updated successfully, but these errors were encountered:
We should update the code to be compatible with Numpy 2.0
This newer version has many deprecation that prevent using pyDVL with newer versions of numpy.
For example,
np.float_
was removed in the NumPy 2.0 release. We should usenp.float64
instead.We can refer to its migration guide for a complete list of changes.
The text was updated successfully, but these errors were encountered: