From 54dd9e94ab0c01a7243f1a82b9d3a19c3be78d80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 15 Jan 2019 16:50:50 +0100 Subject: [PATCH] typing is only required for python < 3.5 (#341) Since 3.5, it is included in the standard library. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78a5378cd..cb470e04e 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ REQUIRES = [ 'colorlog>=3.1.2', 'tornado>=5.0.0', 'esptool>=2.3.1', - 'typing>=3.0.0', + 'typing>=3.0.0;python_version<"3.5"', 'protobuf>=3.4', 'tzlocal>=1.4', ]