From a95455dfccc0b430b29ebc0d8e6e1a29c1972441 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Tue, 18 Mar 2025 13:52:54 +0100 Subject: [PATCH] Ignore cattrs warning Signed-off-by: Cristian Le --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 710c7ce7..3e153f0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -144,6 +144,7 @@ filterwarnings = [ "default:The distutils.sysconfig module is deprecated, use sysconfig instead:DeprecationWarning", # Caused by setuptools sometimes "default:check_home argument is deprecated and ignored.:DeprecationWarning", # Caused by setuptools sometimes "ignore::scikit_build_core._vendor.pyproject_metadata.errors.ConfigurationWarning", + "ignore:'_UnionGenericAlias' is deprecated and slated for removal in Python 3.17:DeprecationWarning", # From cattrs 24.1.2 and other? ] log_cli_level = "info" pythonpath = ["tests/utils"]