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.
dask.array
1 parent f739f65 commit bedbee0Copy full SHA for bedbee0
scipy/conftest.py
@@ -182,8 +182,8 @@ def num_parallel_threads():
182
# Note: dask.array main namespace is not array API compatible
183
# (to address this, we will fix tests that use the broken dask behavior to
184
# use the array-api-compat wrapped version instead)
185
- import dask.array as da
186
- xp_available_backends.update({'dask.array': da})
+ import dask.array # type: ignore[import-not-found]
+ xp_available_backends.update({'dask.array': dask.array})
187
except ImportError:
188
pass
189
0 commit comments