From 2f773cbcad16c0ea83a07dd35f2b474c00ddd8bb Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 5 Nov 2024 21:49:56 +0000 Subject: [PATCH] Restrict typing_extensions requirement to < 3.10 (#28) It's not used on newer Python versions. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 40ec377..5055290 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ maintainers = [ # Dependency Information requires-python = ">=3.8" dependencies = [ - "typing_extensions", + "typing_extensions;python_version<'3.10'", ] # Extra information