From a91c5996186fcc87c20d4f6bd2353573e4876e6b Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 9 Sep 2024 11:44:50 +0200 Subject: [PATCH] fix: requires typing-extensions below 3.11 --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c7903c9..0466056 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,13 +28,11 @@ dependencies = [ "packaging", "toml; python_version < '3.11'", "pydantic~=2.0", - "argcomplete>=3" + "argcomplete>=3", + "typing-extensions; python_version < '3.11'", ] [project.optional-dependencies] -dev = [ - "typing-extensions; python_version < '3.8'", -] test = [ "pytest", "pytest-cov",