From 58cc2a62cac52e742d19326f4c67331cc0634f67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Mon, 15 May 2023 16:22:25 +0200 Subject: [PATCH] ignore DeprecationWarning 'set_child_watcher' is deprecated as of Python 3.12 --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 48fbf70..0336cf8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -144,6 +144,8 @@ filterwarnings = # can be dropped with the next release of `certify`, specifically # `certify > 2022.06.15`. ignore:path is deprecated. Use files.. instead. Refer to https.//importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy for migration advice.:DeprecationWarning:certifi.core + ignore:'set_child_watcher' is deprecated as of Python 3.12 and will be removed in Python 3.14.:DeprecationWarning:: + junit_suite_name = aiohttp_test_suite norecursedirs = dist docs build .tox .eggs minversion = 3.8.2 -- 2.40.1