You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on #8371 I tried to run pytest -m core and hit an error because the environment pulled dask=2024.4.2. I believe this is because we raise when we have warnings?.
SHould we pin dask to be < 2024.4.2 or is there a better solution here?
______________________________________________ ERROR collecting ibis/expr/tests/test_schema.py ______________________________________________
ibis/expr/tests/test_schema.py:26: in <module>
import dask.dataframe as dd # noqa: F401
/Users/naty/mambaforge/envs/ibis-dev-arm64/lib/python3.10/site-packages/dask/dataframe/__init__.py:162: in <module>
warnings.warn(
E DeprecationWarning: The current Dask DataFrame implementation is deprecated.
E In a future release, Dask DataFrame will use new implementation that
E contains several improvements including a logical query planning.
E The user-facing DataFrame API will remain unchanged.
E
E The new implementation is already available and can be enabled by
E installing the dask-expr library:
E
E $ pip install dask-expr
E
E and turning the query planning option on:
E
E >>> import dask
E >>> dask.config.set({'dataframe.query-planning': True})
E >>> import dask.dataframe as dd
E
E API documentation for the new implementation is available at
E https://docs.dask.org/en/stable/dask-expr-api.html
E
E Any feedback can be reported on the Dask issue tracker
E https://github.com/dask/dask/issues
========================================================== short test summary info ==========================================================
ERROR ibis/expr/tests/test_schema.py - DeprecationWarning: The current Dask DataFrame implementation is deprecated.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
The text was updated successfully, but these errors were encountered:
While working on #8371 I tried to run
pytest -m core
and hit an error because the environment pulleddask=2024.4.2
. I believe this is because we raise when we have warnings?.SHould we pin dask to be < 2024.4.2 or is there a better solution here?
The text was updated successfully, but these errors were encountered: