Skip to content

Commit

Permalink
Fix sparse only being tested in 3.10 logic
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Aug 2, 2024
1 parent b1d9d1e commit 29afe3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest

wrapped_libraries = ["numpy", "cupy", "torch", "dask.array"]
all_libraries = wrapped_libraries + ["jax.numpy", "sparse"]
all_libraries = wrapped_libraries + ["jax.numpy"]

# `sparse` added array API support as of Python 3.10.
if sys.version_info >= (3, 10):
Expand Down

0 comments on commit 29afe3a

Please sign in to comment.