]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📌 Do not allow Pydantic 2.1.0 that breaks (require 2.1.1) (#10012)
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 4 Aug 2023 20:57:30 +0000 (22:57 +0200)
committerGitHub <noreply@github.com>
Fri, 4 Aug 2023 20:57:30 +0000 (22:57 +0200)
pyproject.toml

index f0917578f9d1ddf8a522f2d41eb0ab64ce26925d..9b7cca9c95db234688da4843e663236f441bef8d 100644 (file)
@@ -42,7 +42,7 @@ classifiers = [
 ]
 dependencies = [
     "starlette>=0.27.0,<0.28.0",
-    "pydantic>=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,<3.0.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.5.0",
 ]
 dynamic = ["version"]