We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c056226 commit 23a2cd3Copy full SHA for 23a2cd3
unittest/python/test_user_type.py
@@ -33,7 +33,8 @@ def test(dtype):
33
assert not (mat < mat).all()
34
35
mat2 = mat.dot(mat.T)
36
- mat2 = np.matmul(mat,mat.T)
+ if np.__version__ >= '1.17.0':
37
+ mat2 = np.matmul(mat,mat.T)
38
39
def test_cast(from_dtype,to_dtype):
40
np.can_cast(from_dtype,to_dtype)
0 commit comments