We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 850ef72 commit b1d9d1eCopy full SHA for b1d9d1e
1 file changed
tests/_helpers.py
@@ -3,11 +3,8 @@
3
4
import pytest
5
6
-wrapped_libraries = ["cupy", "torch", "dask.array"]
7
-all_libraries = wrapped_libraries + ["numpy", "jax.numpy", "sparse"]
8
-import numpy as np
9
-if np.__version__[0] == '1':
10
- wrapped_libraries.append("numpy")
+wrapped_libraries = ["numpy", "cupy", "torch", "dask.array"]
+all_libraries = wrapped_libraries + ["jax.numpy", "sparse"]
11
12
# `sparse` added array API support as of Python 3.10.
13
if sys.version_info >= (3, 10):
0 commit comments