]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Remove old warning filters (#1621)
authorMarcelo Trylesinski <marcelotryle@gmail.com>
Tue, 3 May 2022 17:52:59 +0000 (19:52 +0200)
committerGitHub <noreply@github.com>
Tue, 3 May 2022 17:52:59 +0000 (19:52 +0200)
* Remove old warning filters

* Add collections.abc

setup.cfg

index a5e6e0e146868249eda62745ae99f4180f9a3103..734fa818c169a2fd41e554dca01224e63647b08a 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -28,11 +28,6 @@ xfail_strict=True
 filterwarnings=
     # Turn warnings that aren't filtered into exceptions
     error
-    ignore: Using or importing the ABCs from 'collections' instead of from 'collections\.abc' is deprecated.*:DeprecationWarning
-    ignore: The 'context' alias has been deprecated. Please use 'context_value' instead\.:DeprecationWarning
-    ignore: The 'variables' alias has been deprecated. Please use 'variable_values' instead\.:DeprecationWarning
-    # Workaround for Python 3.9.7 (see https://bugs.python.org/issue45097)
-    ignore:The loop argument is deprecated since Python 3\.8, and scheduled for removal in Python 3\.10\.:DeprecationWarning:asyncio
     ignore: run_until_first_complete is deprecated and will be removed in a future version.:DeprecationWarning
     ignore: starlette\.middleware\.wsgi is deprecated and will be removed in a future release\.*:DeprecationWarning