cmake: bump up required Python3 to 3.9

since we've dropped the support of CentOS 8 in favor of CentOS 9, and
the minmum Python3 version used by the suppored distros are 3.9. let's
bump up the Python3 version to 3.9. as we are going to remove the code
for older versions like Python 3.6 and 3.8 backward compatibility.

Refs https://tracker.ceph.com/issues/66399
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
This commit is contained in:
Kefu Chai 2024-06-22 09:10:10 +08:00
parent 7ca11f41de
commit 51f71fc17a

View File

@ -580,10 +580,13 @@ endif (WITH_RADOSGW)
option(WITH_CEPHFS "CephFS is enabled" ON)
if(NOT WIN32)
# Please specify 3.[0-7] if you want to build with a certain version of python3.
# Please specify 3.x if you want to build with a certain version of python3.
set(WITH_PYTHON3 "3" CACHE STRING "build with specified python3 version")
find_package(Python3 ${WITH_PYTHON3} EXACT REQUIRED
COMPONENTS Interpreter Development)
if(Python3_VERSION VERSION_LESS 3.9)
message(FATAL_ERROR "${Python3_VERSION} is not supported, please use Python 3.9 and up")
endif()
option(WITH_MGR "ceph-mgr is enabled" ON)
if(WITH_MGR)