Some checks failed
Build & Test Map Renderer / build (ubuntu-latest) (push) Has been cancelled
Build & Test Debug / build (ubuntu-latest) (push) Has been cancelled
Check Merge Conflicts / Label (push) Has been cancelled
Test Packaging / Test Packaging (push) Has been cancelled
RGA schema validator / YAML RGA schema validator (push) Has been cancelled
Map file schema validator / YAML map schema validator (push) Has been cancelled
YAML Linter / YAML Linter (push) Has been cancelled
Build & Test Map Renderer / Build & Test Debug (push) Has been cancelled
Build & Test Debug / Build & Test Debug (push) Has been cancelled
Benchmarks / Run Benchmarks (push) Has been cancelled
Update Contrib and Patreons in credits / get_credits (push) Has been cancelled
Build & Publish Docfx / docfx (push) Has been cancelled
14 lines
424 B
Python
14 lines
424 B
Python
#!/usr/bin/env python3
|
|
|
|
# Import future so people on py2 still get the clear error that they need to upgrade.
|
|
from __future__ import print_function
|
|
import sys
|
|
import subprocess
|
|
|
|
version = sys.version_info
|
|
if version.major < 3 or (version.major == 3 and version.minor < 5):
|
|
print("ERROR: You need at least Python 3.5 to build SS14.")
|
|
sys.exit(1)
|
|
|
|
subprocess.run([sys.executable, "git_helper.py"], cwd="BuildChecker")
|