Skip to content

Commit

Permalink
Ignore legacy Dask dataframe warnings (#1397)
Browse files Browse the repository at this point in the history
Ignore legacy Dask dataframe warnings that the implementation is going to be soon removed, introduced in
dask/dask#11437 .

The warning is only raised for `DASK_DATAFRAME__QUERY_PLANNING=False` cases.

Authors:
  - Peter Andreas Entschev (https://github.com/pentschev)

Approvers:
  - Richard (Rick) Zamora (https://github.com/rjzamora)
  - James Lamb (https://github.com/jameslamb)

URL: #1397
  • Loading branch information
pentschev authored Oct 22, 2024
1 parent dfcd399 commit 0f78f5d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ filterwarnings = [
# is enabled in both dask-cudf and dask-cuda.
# See: https://github.com/rapidsai/dask-cuda/issues/1311
"ignore:Dask DataFrame implementation is deprecated:DeprecationWarning",
# Dask now loudly throws warnings: https://github.com/dask/dask/pull/11437
# When the legacy implementation is removed we can remove this warning and stop running pytests with `DASK_DATAFRAME__QUERY_PLANNING=False`
"ignore:The legacy Dask DataFrame implementation is deprecated and will be removed in a future version.*:FutureWarning",
]

[tool.rapids-build-backend]
Expand Down

0 comments on commit 0f78f5d

Please sign in to comment.