CMake: Bump the minimum Python version to 3.6.

Make Python 3.6 the minimum required version. Version 3.6 added support
for f-strings.
This commit is contained in:
Gerald Combs 2022-06-24 10:31:09 -07:00
parent 8bdff72625
commit dac75fba7f
1 changed files with 2 additions and 2 deletions

View File

@ -1157,9 +1157,9 @@ if(CMAKE_VERSION VERSION_LESS "3.12")
# - PATH contains python3.6, but not python3 (3.4). Affects RHEL7+EPEL.
# - Path contains C:\Python27 but not C:\Python37 (which is installed,
# but not present in PATH).
find_package(PythonInterp 3.4 REQUIRED)
find_package(PythonInterp 3.6 REQUIRED)
else()
find_package(Python3 3.4 REQUIRED)
find_package(Python3 3.6 REQUIRED)
# Several files (including LocatePythonModule) still use the old name
# from FindPythonInterp, let's stick to it for now.
set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE})