From 180a7297ff42d675f70b93d0c79e853840ee7c62 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sat, 28 Oct 2023 23:09:30 +0300 Subject: [PATCH] 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. --- CHANGES/1347.misc.rst | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CHANGES/1347.misc.rst diff --git a/CHANGES/1347.misc.rst b/CHANGES/1347.misc.rst new file mode 100644 index 00000000..2da2e568 --- /dev/null +++ b/CHANGES/1347.misc.rst @@ -0,0 +1 @@ +Updated :code:`typing-extensions` package version range in dependencies to fix compatibility with :code:`FastAPI` diff --git a/pyproject.toml b/pyproject.toml index 9553b128..9b0511ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]