Update typing-extensions version range in dependencies

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:08:35 +03:00
parent 475b1861e5
commit f13c2cbcd4
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
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",
"aiofiles~=23.2.1",
"certifi>=2023.7.22",
"typing-extensions~=4.8.0",
"typing-extensions>=4.7.0,<=5.0",
]
dynamic = ["version"]