From 1a585a8872da485cd847721b6f02fc79f28c9f3a Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Thu, 2 Jun 2022 08:36:04 +0200 Subject: [PATCH] Extend typing_extensions to <4.2.0 --- requirements.txt | 4 ++-- setup.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index d532e0f9f..5f35d8e91 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ pydantic>=1.7.4,!=1.8,!=1.8.1,<1.10.0 numpy>=1.15.0 # Backports of modern Python features dataclasses>=0.6,<1.0; python_version < "3.7" -typing_extensions>=3.7.4.1,<4.0.0.0; python_version < "3.8" +typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8" contextvars>=2.4,<3; python_version < "3.7" # Development dependencies cython>=0.25.0,<3.0 @@ -33,4 +33,4 @@ nbconvert>=5.6.1,<6.2.0 nbformat>=5.0.4,<5.2.0 # Test to_disk/from_disk against pathlib.Path subclasses pathy>=0.3.5 -black>=22.0,<23.0 \ No newline at end of file +black>=22.0,<23.0 diff --git a/setup.cfg b/setup.cfg index 5351aa433..adc3dac92 100644 --- a/setup.cfg +++ b/setup.cfg @@ -51,7 +51,7 @@ install_requires = pydantic>=1.7.4,!=1.8,!=1.8.1,<1.10.0 # Backports of modern Python features dataclasses>=0.6,<1.0; python_version < "3.7" - typing_extensions>=3.7.4.1,<4.0.0.0; python_version < "3.8" + typing_extensions>=3.7.4.1,<4.2.0; python_version < "3.8" contextvars>=2.4,<3; python_version < "3.7" [options.extras_require]