From 5077da5664c041e21f08688f55ab67a0c266827f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Sat, 18 Nov 2017 19:57:15 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20require=20typing=20with=20Pytho?= =?UTF-8?q?n=203.5=20and=20newer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Python 3.5 and newer ship with built-in typing support. For this reason, there is no need to require the typing package starting from Python 3.5. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9af53ca24..3379130aa 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ 'click', 'cryptography', 'pretty_cron', - 'typing', + 'typing; python_version < "3.5"', 'zeroconf', 'pycrypto', 'attrs',