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
The pytest output for our tests are overwhelmed with warnings about the deprecation of np.int and np.float as aliases for builtin int and float. The change in Numpy is documented in https://numpy.org/devdocs/release/1.20.0-notes.html .
I suggest we change np.int to np.int64 and np.float to np.float64, unless there's a strong reason to have 32bit support.
The text was updated successfully, but these errors were encountered:
The pytest output for our tests are overwhelmed with warnings about the deprecation of np.int and np.float as aliases for builtin int and float. The change in Numpy is documented in https://numpy.org/devdocs/release/1.20.0-notes.html .
I suggest we change np.int to np.int64 and np.float to np.float64, unless there's a strong reason to have 32bit support.
The text was updated successfully, but these errors were encountered: