Closed roth-jakob closed 5 months ago
Numpy 2.0 was released. At a few places in Nifty, we use np.asfarray, which was removed with Numpy 2.0. Now, one should use np.asarray and specify a dtype.
np.asfarray
np.asarray
Ah, sorry, I didn't have the latest commits from nifty8. It's already fixed.
Numpy 2.0 was released. At a few places in Nifty, we use
np.asfarray
, which was removed with Numpy 2.0. Now, one should usenp.asarray
and specify a dtype.