Blob Blame History Raw
diff -Naur fastapi-0.81.0-original/pyproject.toml fastapi-0.81.0/pyproject.toml
--- fastapi-0.81.0-original/pyproject.toml	2022-08-26 11:18:44.000000000 -0400
+++ fastapi-0.81.0/pyproject.toml	2022-09-21 09:04:22.875447352 -0400
@@ -130,4 +130,8 @@
     'ignore:starlette.middleware.wsgi is deprecated and will be removed in a future release\..*:DeprecationWarning:starlette',
     # TODO: remove after dropping support for Python 3.6
     'ignore:Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography and will be removed in a future release.:UserWarning:jose',
+    # Ignore all DeprecationWarning messages, as they pop up from various
+    # dependencies in practice. Upstream deals with this by tightly controlling
+    # dependency versions in CI.
+    "ignore::DeprecationWarning",
 ]