scons: Update the minimum version of python to 3.6.

The gem5 website says the minimum version of python is 3.6, but SCons
was only enforcing version 3.0.

Change-Id: I50e406538b29d2ee469d5fcc16cd509cfa6a7540
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/48513
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Gabe Black
2021-07-24 00:09:59 -07:00
committed by Gabe Black
parent 4560cf8531
commit fc75880d25

View File

@@ -53,7 +53,7 @@ For more details, see:
# Check for the python version. Python 2 is no longer supported.
try:
EnsurePythonVersion(3, 0)
EnsurePythonVersion(3, 6)
except SystemExit as e:
print("""\033[93m
Python 3 is now required.