From: Sebastián Ramírez Date: Sat, 2 Sep 2023 17:03:43 +0000 (+0200) Subject: 📌 Pin AnyIO to < 4.0.0 to handle an incompatibility while upgrading to Starlette... X-Git-Tag: 0.103.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e1a1a367a74a64c330e11fb63a870a2c77a29a85;p=thirdparty%2Ffastapi%2Ffastapi.git 📌 Pin AnyIO to < 4.0.0 to handle an incompatibility while upgrading to Starlette 0.31.1 (#10194) --- diff --git a/pyproject.toml b/pyproject.toml index 9b7cca9c95..2870b31a53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,8 @@ dependencies = [ "starlette>=0.27.0,<0.28.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", + # TODO: remove this pin after upgrading Starlette 0.31.1 + "anyio>=3.7.1,<4.0.0", ] dynamic = ["version"]