···11+diff --git a/setup.cfg b/setup.cfg
22+index 6944b7e2..dfa65d69 100644
33+--- a/setup.cfg
44++++ b/setup.cfg
55+@@ -128,6 +128,7 @@ filterwarnings =
66+ ignore:Creating a LegacyVersion has been deprecated and will be removed in the next major release:DeprecationWarning::
77+ ignore:module 'sre_constants' is deprecated:DeprecationWarning:pkg_resources._vendor.pyparsing
88+ 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
99++ ignore:pkg_resources is deprecated as an API:DeprecationWarning
1010+ junit_suite_name = aiohttp_test_suite
1111+ norecursedirs = dist docs build .tox .eggs
1212+ minversion = 3.8.2
1313+diff --git a/tests/test_circular_imports.py b/tests/test_circular_imports.py
1414+index 22e5ea47..a655fd1d 100644
1515+--- a/tests/test_circular_imports.py
1616++++ b/tests/test_circular_imports.py
1717+@@ -113,6 +113,10 @@ def test_no_warnings(import_path: str) -> None:
1818+ "-W",
1919+ "ignore:Creating a LegacyVersion has been deprecated and will "
2020+ "be removed in the next major release:DeprecationWarning:",
2121++ # Deprecation warning emitted by setuptools v67.5.0+ triggered by importing
2222++ # `gunicorn.util`.
2323++ "-W", "ignore:pkg_resources is deprecated as an API:"
2424++ "DeprecationWarning",
2525+ "-c", f"import {import_path!s}",
2626+ # fmt: on
2727+ )