Replace RuntimeError by SystemExit.

This commit is contained in:
grossmj
2015-06-03 19:58:58 -06:00
parent 9b0f548336
commit ea8119f3ad
4 changed files with 10 additions and 9 deletions

View File

@@ -21,7 +21,8 @@ from setuptools.command.test import test as TestCommand
# we only support Python 3 version >= 3.4
if sys.version_info < (3, 4):
raise RuntimeError("Python 3.4 or higher is required")
raise SystemExit("Python 3.4 or higher is required")
class Tox(TestCommand):