Skip to content

Commit

Permalink
Always install typing module (compat with python 3.4 on ubuntu)
Browse files Browse the repository at this point in the history
Fix #1021
  • Loading branch information
julien-duponchelle committed May 9, 2017
1 parent 050f687 commit ac5509f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ def run_tests(self):

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__,
Expand Down

0 comments on commit ac5509f

Please sign in to comment.