Skip to content
Snippets Groups Projects
Commit 76e63d1a authored by Markus Holzer's avatar Markus Holzer
Browse files

Merge branch 'fix-numpy' into 'master'

Fix: `np.issctype` was removed in NumPy 2.0. Use `issubdtype(_, np.generic)` instead.

See merge request !395
parents 6e49be6e 99e17399
Branches
Tags
1 merge request!395Fix: `np.issctype` was removed in NumPy 2.0. Use `issubdtype(_, np.generic)` instead.
Pipeline #67287 passed with stages
in 16 minutes and 18 seconds
......@@ -7,7 +7,7 @@ import sympy as sp
def is_supported_type(dtype: np.dtype):
scalar = dtype.type
c = np.issctype(dtype)
c = np.issubdtype(dtype, np.generic)
subclass = issubclass(scalar, np.floating) or issubclass(scalar, np.integer) or issubclass(scalar, np.bool_)
additional_checks = dtype.fields is None and dtype.hasobject is False and dtype.subdtype is None
return c and subclass and additional_checks
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment