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
If you are stuck with NumPy < 1.22 then you should really pin arch to be < 7. The reason for this is that NumPy 7+ is build using NumPy 2.0.0+ for the C api. This is only backward compat back to NumPy 1.22.3.
Hello!
It seems that this typing is not compatible with latest versions of numpy. in typing.py:
NDArray = Union[np.ndarray]
Float64Array = np.ndarray[Any, np.dtype[np.double]] # pragma: no cover <----------
Int64Array = np.ndarray[Any, np.dtype[np.longlong]] # pragma: no cover
Int32Array = np.ndarray[Any, np.dtype[np.intc]] # pragma: no cover
The text was updated successfully, but these errors were encountered: