From cf0e61f77a79fc9ce2fb39a66e819c52b231d703 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Thu, 30 May 2024 12:26:16 +0200 Subject: [PATCH] allow typing-extensions up to 5.0.0 --- requirements.txt | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f4e02d7..63fb68a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0 -typing_extensions>=3.7.4.1,<4.5.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 catalogue>=2.0.3,<2.1.0 diff --git a/setup.cfg b/setup.cfg index f35fc9e..8622a3b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,7 +31,7 @@ include_package_data = true python_requires = >=3.6 install_requires = pydantic>=1.7.4,!=1.8,!=1.8.1,<3.0.0 - typing_extensions>=3.7.4.1,<4.5.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]