Update typing-extensions version range in dependencies (#1352)

This commit changes the version requirements for typing-extensions in the dependencies section of pyproject.toml file. This change now requires versions that are greater than or equal to 4.7.0 and less than or equal to 5.0. The previous version, 4.8.0, has been found to cause compatibility issues with some other libraries.
This commit is contained in:
Alex Root Junior 2023-10-28 23:09:30 +03:00 committed by GitHub
parent 475b1861e5
commit 180a7297ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
CHANGES/1347.misc.rst Normal file
View file

@ -0,0 +1 @@
Updated :code:`typing-extensions` package version range in dependencies to fix compatibility with :code:`FastAPI`

View file

@ -45,7 +45,7 @@ dependencies = [
"pydantic>=2.4.1,<2.5", "pydantic>=2.4.1,<2.5",
"aiofiles~=23.2.1", "aiofiles~=23.2.1",
"certifi>=2023.7.22", "certifi>=2023.7.22",
"typing-extensions~=4.8.0", "typing-extensions>=4.7.0,<=5.0",
] ]
dynamic = ["version"] dynamic = ["version"]