1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-22 22:10:57 +00:00

Make sure still support Python >= 3.5.3

This commit is contained in:
grossmj 2019-11-11 12:39:45 +08:00
parent 7571c32563
commit 2fd4b2cbc8
2 changed files with 2 additions and 1 deletions

View File

@ -236,7 +236,7 @@ def run():
return
log.info("HTTP authentication is enabled with username '{}'".format(user))
# we only support Python 3 version >= 3.5
# we only support Python 3 version >= 3.5.3
if sys.version_info < (3, 5, 3):
raise SystemExit("Python 3.5.3 or higher is required")

View File

@ -1,3 +1,4 @@
yarl==1.3.0 # yarl 1.4+ requires Python 3.6+ (needed by aiohttp and aiohttp-cors)
jsonschema==2.6.0 # pyup: ignore
aiohttp==3.6.2
aiohttp-cors==0.7.0