File websockets.patch of Package python-uvicorn
Index: uvicorn-0.34.0/pyproject.toml
===================================================================
--- uvicorn-0.34.0.orig/pyproject.toml
+++ uvicorn-0.34.0/pyproject.toml
@@ -92,6 +92,9 @@ filterwarnings = [
"ignore:Uvicorn's native WSGI implementation is deprecated.*:DeprecationWarning",
"ignore: 'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
"ignore: remove second argument of ws_handler:DeprecationWarning:websockets",
+ "ignore: websockets.legacy is deprecated.*:DeprecationWarning:websockets",
+ "ignore: websockets.server.WebSocketServerProtocol is deprecated.*:DeprecationWarning:websockets",
+ "ignore: websockets.exceptions.InvalidStatusCode.*:DeprecationWarning",
]
[tool.coverage.run]