RUN_THIS.py 424 B

12345678910111213
  1. #!/usr/bin/env python3
  2. # Import future so people on py2 still get the clear error that they need to upgrade.
  3. from __future__ import print_function
  4. import sys
  5. import subprocess
  6. version = sys.version_info
  7. if version.major < 3 or (version.major == 3 and version.minor < 5):
  8. print("ERROR: You need at least Python 3.5 to build SS14.")
  9. sys.exit(1)
  10. subprocess.run([sys.executable, "git_helper.py"], cwd="BuildChecker")