From 71afded94bd819d461648ecf6fa2103aedb33213 Mon Sep 17 00:00:00 2001 From: Marcos Prieto Date: Thu, 11 Jan 2024 16:16:41 +0100 Subject: [PATCH] Filterwarnings about deprecated CGI warning --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8c7dd557..f61e985c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,8 @@ filterwarnings = [ "ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pkg_resources", "ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pyramid", "ignore:^Deprecated call to .pkg_resources\\.declare_namespace\\('.*'\\).\\.:DeprecationWarning:pkg_resources", + # https://github.com/webpy/webpy/issues/732 + "ignore:^\\'cgi\\' is deprecated and slated for removal in Python 3\\.13:DeprecationWarning:webob", ] [tool.pydocstyle]