From ac5509f383092235448d25ee2d30241d13b74353 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 9 May 2017 15:09:55 +0200 Subject: [PATCH] Always install typing module (compat with python 3.4 on ubuntu) Fix #1021 --- requirements.txt | 1 + setup.py | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 775d220d..648cf5f7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,4 @@ Jinja2>=2.7.3 raven>=5.23.0 psutil>=3.0.0 zipstream>=1.1.4 +typing>=3.5.3.0 # Otherwise yarl fail with python 3.4 diff --git a/setup.py b/setup.py index fd19894f..02663755 100644 --- a/setup.py +++ b/setup.py @@ -40,9 +40,6 @@ class PyTest(TestCommand): dependencies = open("requirements.txt", "r").read().splitlines() -if sys.version_info <= (3, 4): - dependencies.append('typing>=3.5.3.0 # Otherwise yarl fail with python 3.4') - setup( name="gns3-server", version=__import__("gns3server").__version__,