From 50dc2d75a2c017183a41a90c9a37a162a50176fc Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 5 Nov 2024 11:31:24 +0000 Subject: [PATCH] Restrict typing_extensions requirement to < 3.10 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