From: Sebastián Ramírez Date: Fri, 4 Aug 2023 20:57:30 +0000 (+0200) Subject: 📌 Do not allow Pydantic 2.1.0 that breaks (require 2.1.1) (#10012) X-Git-Tag: 0.101.0~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77d1f69b1f2dced4fc7e2e0e934ffc259a4b4a98;p=thirdparty%2Ffastapi%2Ffastapi.git 📌 Do not allow Pydantic 2.1.0 that breaks (require 2.1.1) (#10012) --- diff --git a/pyproject.toml b/pyproject.toml index f0917578f9..9b7cca9c95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]