From a6fad46518b7cea36d35be2ab2e2908b5a5f3a02 Mon Sep 17 00:00:00 2001 From: Stefan <96178532+stefan6419846@users.noreply.github.com> Date: Sun, 27 Aug 2023 08:21:14 +0200 Subject: [PATCH] MAINT: Relax typing_extensions version (#2104) TypeAlias was added in 3.7.4.3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5c65d3955..b0752bb47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ classifiers = [ "Typing :: Typed", ] dependencies = [ - "typing_extensions >= 3.10.0.0; python_version < '3.10'", + "typing_extensions >= 3.7.4.3; python_version < '3.10'", "dataclasses; python_version < '3.7'", ]