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
Silence another warning in test_backends.py (#8587)
* Silence another warning in test_backends.py
Using 255 as fillvalue for int8 arrays will not be allowed any more.
Previously this overflowed to -1. Now specify that instead.
On numpy 1.24.4
>>> np.array([255], dtype="i1")
DeprecationWarning: NumPy will stop allowing conversion of out-of-bound Python integers to integer arrays. The conversion of 255 to int8 will fail in the future.
array([-1], dtype=int8)
* Silence another warning
* Revert "Silence another warning in test_backends.py"
This reverts commit fe15ac6.
0 commit comments