]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
⬆️ Upgrade Starlette to >=0.35.0,<0.36.0 (#10938)
authorSebastián Ramírez <tiangolo@gmail.com>
Thu, 11 Jan 2024 15:29:54 +0000 (19:29 +0400)
committerGitHub <noreply@github.com>
Thu, 11 Jan 2024 15:29:54 +0000 (16:29 +0100)
pyproject.toml

index 2fde7553a8759cf9d34fd0d2f30a52cbe2004e26..8e7f8bbbe5914344758bce7f3babef7efec08004 100644 (file)
@@ -41,7 +41,7 @@ classifiers = [
     "Topic :: Internet :: WWW/HTTP",
 ]
 dependencies = [
-    "starlette>=0.29.0,<0.33.0",
+    "starlette>=0.35.0,<0.36.0",
     "pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0",
     "typing-extensions>=4.8.0",
 ]
@@ -121,6 +121,9 @@ filterwarnings = [
     #   - https://github.com/mpdavis/python-jose/issues/332
     #   - https://github.com/mpdavis/python-jose/issues/334
     'ignore:datetime\.datetime\.utcnow\(\) is deprecated and scheduled for removal in a future version\..*:DeprecationWarning:jose',
+    # TODO: remove after upgrading Starlette to a version including https://github.com/encode/starlette/pull/2406
+    # Probably Starlette 0.36.0
+    "ignore: The 'method' parameter is not used, and it will be removed.:DeprecationWarning:starlette",
 ]
 
 [tool.coverage.run]