make python 3.6 the official minimum version

This commit is contained in:
Kavon Farvardin
2023-07-24 15:13:17 -07:00
parent 93e209cda4
commit dade95dcc0
2 changed files with 2 additions and 2 deletions

View File

@@ -1214,7 +1214,7 @@ endif()
# Find required dependencies. # Find required dependencies.
# #
find_package(Python3 COMPONENTS Interpreter REQUIRED) find_package(Python3 3.6 COMPONENTS Interpreter REQUIRED)
# #
# Find optional dependencies. # Find optional dependencies.

View File

@@ -191,7 +191,7 @@ toolchain as a one-off, there are a couple of differences:
### Spot check dependencies ### Spot check dependencies
* Run `cmake --version`; this should be at least 3.19.6 (3.24.2 if you want to use Xcode for editing on macOS). * Run `cmake --version`; this should be at least 3.19.6 (3.24.2 if you want to use Xcode for editing on macOS).
* Run `python3 --version`; check that this succeeds. * Run `python3 --version`; this should be at least 3.6.
* Run `ninja --version`; check that this succeeds. * Run `ninja --version`; check that this succeeds.
* If you installed and want to use Sccache: Run `sccache --version`; check * If you installed and want to use Sccache: Run `sccache --version`; check
that this succeeds. that this succeeds.