From 8a8e89bc6a53d2102f3db6687efe63801b5a7a57 Mon Sep 17 00:00:00 2001 From: Daniele Nicolodi Date: Sun, 24 Mar 2024 17:20:48 +0100 Subject: [PATCH] TST: ignore distutils deprecation warning Somehow this warning is triggered when running the tests with GraalPy. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8cfd805b4..3e6d9bce8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -117,4 +117,5 @@ testpaths = ['tests'] xfail_strict = true filterwarnings = [ 'error', + 'ignore:The distutils package is deprecated:DeprecationWarning', ]