From 8f1840fe977d72c2fcfe5bd1ffd09460868e0a61 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 26 Sep 2023 14:57:00 +0200 Subject: [PATCH] Remove obsolete pytest `filterwarnings` (#1241) Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Mads R. B. Kristensen (https://github.com/madsbk) URL: https://github.com/rapidsai/dask-cuda/pull/1241 --- pyproject.toml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 73777b316..9ed334b4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,15 +116,8 @@ skip = [ filterwarnings = [ "error::DeprecationWarning", "error::FutureWarning", - "ignore::DeprecationWarning:pkg_resources", - "ignore:distutils Version classes are deprecated.*:DeprecationWarning:", - # tornado 6.2, remove when dask/distributed#6669 is fixed - "ignore:clear_current is deprecated:DeprecationWarning:", - "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]