Skip to content

Commit

Permalink
filter dask.dataframe deprecation for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed Feb 12, 2024
1 parent 364eba8 commit 905b6b4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dask_cuda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import sys
import warnings

if sys.platform != "linux":
raise ImportError("Only Linux is supported by Dask-CUDA at this time")

# This warning is not specific to dask-cuda
# See: https://github.com/rapidsai/dask-cuda/issues/1311
warnings.filterwarnings(
"ignore",
message="The current Dask DataFrame implementation is deprecated.",
)

import dask
import dask.utils
Expand Down

0 comments on commit 905b6b4

Please sign in to comment.