]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Remove unneeded warning filters (#2811)
authorMarcelo Trylesinski <marcelotryle@gmail.com>
Thu, 26 Dec 2024 08:00:28 +0000 (09:00 +0100)
committerGitHub <noreply@github.com>
Thu, 26 Dec 2024 08:00:28 +0000 (09:00 +0100)
pyproject.toml

index 18b954c844f7bb2e9f175af0ef3787fa17014299..0712fe5da598593ed26d4358d31cc2dd0940e48b 100644 (file)
@@ -85,10 +85,7 @@ filterwarnings = [
     "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",
     "ignore: Async generator 'starlette.requests.Request.stream' was garbage collected before it had been exhausted.*:ResourceWarning",
-    "ignore: path is deprecated.*:DeprecationWarning:certifi",
     "ignore: Use 'content=<...>' to upload raw bytes/text content.:DeprecationWarning",
-    "ignore: 'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
-    "ignore: You seem to already have a custom sys.excepthook handler installed. I'll skip installing Trio's custom handler, but this means MultiErrors will not show full tracebacks.:RuntimeWarning",
     # TODO: This warning appeared when we bumped anyio to 4.4.0.
     "ignore: Unclosed .MemoryObject(Send|Receive)Stream.:ResourceWarning",
 ]