From 8ab7d8760747b257a71cb9971dd66ce6dd9a8f64 Mon Sep 17 00:00:00 2001 From: Tim Taschke Date: Wed, 14 Sep 2022 11:23:47 +0900 Subject: [PATCH] fix: remove python version constraint for typing_extensions to prevent import errors for >=3.8 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3b8cf1a..23a6600 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ license = { text = "GPL-3.0" } dependencies = [ "bytesioex>=0.1.2", "colour>=0.1.5", - 'typing_extensions>=4.3.0;python_version<"3.8"', + 'typing_extensions>=4.3.0', ] dynamic = ["version"]