From 7caf098b09c4fb604785ff440501cfd0ea0ad092 Mon Sep 17 00:00:00 2001 From: Marco Gorelli Date: Fri, 14 Jan 2022 21:51:50 +0000 Subject: [PATCH] dont require typing-extensions in 3.10 --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 57632498deb..c31baab00ae 100644 --- a/setup.py +++ b/setup.py @@ -103,10 +103,7 @@ def find_python_files(base: Path) -> List[Path]: "typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'", "pathspec>=0.9.0", "dataclasses>=0.6; python_version < '3.7'", - "typing_extensions>=3.10.0.0", - # 3.10.0.1 is broken on at least Python 3.10, - # https://github.com/python/typing/issues/865 - "typing_extensions!=3.10.0.1; python_version >= '3.10'", + "typing_extensions>=3.10.0.0; python_version < '3.10'", "mypy_extensions>=0.4.3", ], extras_require={