mirror of
https://github.com/GNS3/gns3-server
synced 2025-07-09 16:18:29 +00:00
parent
afa4ba9b55
commit
4216c5d2ed
4
setup.py
4
setup.py
@ -19,6 +19,10 @@ import sys
|
||||
from setuptools import setup, find_packages
|
||||
from setuptools.command.test import test as TestCommand
|
||||
|
||||
# we only support Python 3 version >= 3.3
|
||||
if sys.version_info < (3, 3):
|
||||
raise SystemExit("Python 3.3 or higher is required")
|
||||
|
||||
|
||||
class PyTest(TestCommand):
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user