From: David Lord Date: Mon, 4 Oct 2021 19:19:05 +0000 (-0700) Subject: ignore internal asyncio warning X-Git-Tag: 3.0.2~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1501%2Fhead;p=thirdparty%2Fjinja.git ignore internal asyncio warning https://bugs.python.org/issue45097 --- diff --git a/setup.cfg b/setup.cfg index a56d5535..f952317e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -47,6 +47,8 @@ babel.extractors = testpaths = tests filterwarnings = error + # Python 3.9 raises a deprecation from internal asyncio code. + ignore:The loop argument:DeprecationWarning:asyncio[.]base_events:542 [coverage:run] branch = True