From 6b513739e157e49c702f75548bb6f0564bd33667 Mon Sep 17 00:00:00 2001 From: Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> Date: Tue, 10 Jan 2023 10:41:47 +0100 Subject: [PATCH] Fix required maximum version of typing-extensions (#20) * Fix required minimum version of typing-extensions * Restrict to <4.5.0 Co-authored-by: Adriane Boyd --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index fe74951..3715d80 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pydantic>=1.7.4,!=1.8,!=1.8.1,<1.11.0 -typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8" +typing_extensions>=3.7.4.1,<4.5.0; python_version < "3.8" srsly>=2.4.0,<3.0.0 # Development requirements pathy>=0.3.5 diff --git a/setup.cfg b/setup.cfg index ad800af..0c0dd5d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ include_package_data = true python_requires = >=3.6 install_requires = pydantic>=1.7.4,!=1.8,!=1.8.1,<1.11.0 - typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8" + typing_extensions>=3.7.4.1,<4.5.0; python_version < "3.8" srsly>=2.4.0,<3.0.0 [sdist]