Skip to content

Commit

Permalink
Ignore legacy Dask dataframe warnings
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.
  • Loading branch information
pentschev committed Oct 22, 2024
1 parent dfcd399 commit bdf41b4
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 bdf41b4

Please sign in to comment.