diff --git a/dask_cuda/__init__.py b/dask_cuda/__init__.py index dbbb1f7f..30f987ac 100644 --- a/dask_cuda/__init__.py +++ b/dask_cuda/__init__.py @@ -3,7 +3,6 @@ if sys.platform != "linux": raise ImportError("Only Linux is supported by Dask-CUDA at this time") - import dask import dask.utils import dask.dataframe.core diff --git a/pyproject.toml b/pyproject.toml index b332307f..27e31ae0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,6 +123,10 @@ filterwarnings = [ "error::FutureWarning", # remove after https://github.com/rapidsai/dask-cuda/issues/1087 is closed "ignore:There is no current event loop:DeprecationWarning:tornado", + # This warning must be filtered until dask-expr support + # 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", ] [tool.setuptools]