Skip to content

Commit

Permalink
Unskip test_array_function_sparse with new sparse release (da…
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau authored May 22, 2024
1 parent 99d64ce commit a9aa853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dask/array/tests/test_array_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_array_notimpl_function_dask(func):
)
def test_array_function_sparse(func):
sparse = pytest.importorskip("sparse")
if Version(sparse.__version__) >= Version("0.15.2"):
if Version(sparse.__version__) == Version("0.15.2"):
pytest.skip(reason="https://github.com/pydata/sparse/issues/682")
x = da.random.default_rng().random((500, 500), chunks=(100, 100))
x[x < 0.9] = 0
Expand Down

0 comments on commit a9aa853

Please sign in to comment.