From 3db9d85c2343aef2850a1143cac43f98dbecbeec Mon Sep 17 00:00:00 2001 From: Albert Villanova del Moral <8515462+albertvillanova@users.noreply.github.com> Date: Fri, 30 Dec 2022 09:20:12 +0100 Subject: [PATCH 1/2] Fix required minimum version of typing-extensions --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index fe74951..205c4d1 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,<5.0.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..88941cc 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,<5.0.0; python_version < "3.8" srsly>=2.4.0,<3.0.0 [sdist] From b43ed25c351c43deb0bf488814171347041a56c4 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 9 Jan 2023 11:16:29 +0100 Subject: [PATCH 2/2] Restrict to <4.5.0 --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 205c4d1..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,<5.0.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 88941cc..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,<5.0.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]