mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 09:18:08 +00:00
Always install typing module (compat with python 3.4 on ubuntu)
Fix #1021
This commit is contained in:
parent
050f6876ce
commit
ac5509f383
@ -6,3 +6,4 @@ Jinja2>=2.7.3
|
|||||||
raven>=5.23.0
|
raven>=5.23.0
|
||||||
psutil>=3.0.0
|
psutil>=3.0.0
|
||||||
zipstream>=1.1.4
|
zipstream>=1.1.4
|
||||||
|
typing>=3.5.3.0 # Otherwise yarl fail with python 3.4
|
||||||
|
3
setup.py
3
setup.py
@ -40,9 +40,6 @@ class PyTest(TestCommand):
|
|||||||
|
|
||||||
dependencies = open("requirements.txt", "r").read().splitlines()
|
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(
|
setup(
|
||||||
name="gns3-server",
|
name="gns3-server",
|
||||||
version=__import__("gns3server").__version__,
|
version=__import__("gns3server").__version__,
|
||||||
|
Loading…
Reference in New Issue
Block a user