From df33d4c15d76e5bfadb7df119edc79c8dc9a3877 Mon Sep 17 00:00:00 2001 From: bddppq Date: Thu, 25 Jul 2019 15:12:56 -0700 Subject: [PATCH] Skip install typing package for python >=3.5 (#2199) No need to backport https://github.com/python/typing/issues/573#issuecomment-405986724 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 882b22ac0bc..1ff62853d02 100644 --- a/setup.py +++ b/setup.py @@ -286,7 +286,7 @@ def run(self): 'protobuf', 'numpy', 'six', - 'typing>=3.6.4', + 'typing>=3.6.4; python_version < "3.5"', 'typing-extensions>=3.6.2.1', ])