From: Dmitrii Sharshakov Date: Thu, 1 Jan 2026 12:29:26 +0000 (+0100) Subject: do_cmake.sh: support Fedora 43+ with Python 3.14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d44e67cdc5f4b6dd58f97f34a345a176f547bd68;p=ceph.git do_cmake.sh: support Fedora 43+ with Python 3.14 Fedora 43 changes system Python version to 3.14. Update do_cmake.sh Tested on Fedora Rawhide as of Jan 1 2026 Ref: https://fedoraproject.org/wiki/Changes/Python3.14 Signed-off-by: Dmitrii Sharshakov --- diff --git a/do_cmake.sh b/do_cmake.sh index a3b901fb66a..64c198f439a 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -19,7 +19,9 @@ if [ -r /etc/os-release ]; then source /etc/os-release case "$ID" in fedora) - if [ "$VERSION_ID" -ge "41" ] ; then + if [ "$VERSION_ID" -ge "43" ] ; then + PYBUILD="3.14" + elif [ "$VERSION_ID" -ge "41" ] ; then PYBUILD="3.13" elif [ "$VERSION_ID" -ge "39" ] ; then PYBUILD="3.12"