Skip to content

Commit bedbee0

Browse files
lucascolleylithomas1
authored andcommitted
ENH: array types: add dask.array support
1 parent f739f65 commit bedbee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scipy/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ def num_parallel_threads():
182182
# Note: dask.array main namespace is not array API compatible
183183
# (to address this, we will fix tests that use the broken dask behavior to
184184
# use the array-api-compat wrapped version instead)
185-
import dask.array as da
186-
xp_available_backends.update({'dask.array': da})
185+
import dask.array # type: ignore[import-not-found]
186+
xp_available_backends.update({'dask.array': dask.array})
187187
except ImportError:
188188
pass
189189

0 commit comments

Comments
 (0)