From e495b511b48912771a070fc36145ba0c31c5ecfe Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Thu, 28 Nov 2024 18:50:56 -0500 Subject: [PATCH] fix: add typing-extensions to dependencies for Python 3.7 Previously it was ignored, maybe due to Python 3.7 went EOL long long ago. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b4cb256..0f7b193 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Environment :: Console", ] dependencies = [ + "typing-extensions;python_version<'3.8'", ] requires-python = ">=3.7" readme = "README.md"