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.
sparse
1 parent 9c40867 commit 44681b6Copy full SHA for 44681b6
tests/_helpers.py
@@ -14,7 +14,9 @@
14
all_libraries.append('sparse')
15
16
def import_(library, wrapper=False):
17
- if library == 'cupy':
+ # CuPy requires a GPU
18
+ # `sparse` has a dependency conflict with NumPy 1.21
19
+ if library in {'cupy', 'sparse'}:
20
pytest.importorskip(library)
21
if wrapper:
22
if 'jax' in library:
0 commit comments