From c94b4ae305068573e219cee1f54ff4f94ff0c5f0 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Fri, 26 May 2023 13:25:26 +0200 Subject: [PATCH] Disable `np.bool` deprecation warning (#1182) Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Lawrence Mitchell (https://github.com/wence-) URL: https://github.com/rapidsai/dask-cuda/pull/1182 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f6675ccdf..d29e871a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -127,6 +127,8 @@ filterwarnings = [ "ignore:make_current is deprecated:DeprecationWarning:", # remove after https://github.com/rapidsai/dask-cuda/issues/1087 is closed "ignore:There is no current event loop:DeprecationWarning:tornado", + # remove after unpinning Dask/Distributed 2023.3.2 + "ignore:.*np.bool.*:DeprecationWarning:", ] [tool.setuptools]