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 af2bb98 commit 2ce086bCopy full SHA for 2ce086b
scipy/conftest.py
@@ -169,8 +169,8 @@ def num_parallel_threads():
169
# Note: dask.array main namespace is not array API compatible
170
# (to address this, we will fix tests that use the broken dask behavior to
171
# use the array-api-compat wrapped version instead)
172
- import dask.array as da
173
- xp_available_backends.update({'dask.array': da})
+ import dask.array # type: ignore[import-not-found]
+ xp_available_backends.update({'dask.array': dask.array})
174
except ImportError:
175
pass
176
0 commit comments