From 87e45553cabdcbf69fe76142331db421e4bd995d Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Wed, 12 Feb 2025 14:52:43 -0500 Subject: [PATCH] only require typing-extensions on python < 3.11 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 21bc9fc..b75ca01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,7 +63,7 @@ dev = [ "flake8 == 7.1.1", "mypy == 1.13.0", "pyinstaller == 6.10.0", - "typing-extensions == 4.12.2", + "typing-extensions == 4.12.2; python_version < '3.11'", ] docs = [ "furo == 2024.1.29",