mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-13 04:48:22 +00:00
typing is already included in Py >= 3.5 (#979)
This commit is contained in:
committed by
Julien Duponchelle
parent
a9b76c9656
commit
3518a781e9
3
setup.py
3
setup.py
@ -40,6 +40,9 @@ 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__,
|
||||
|
Reference in New Issue
Block a user