From: John Mulligan Date: Thu, 30 Apr 2026 19:48:09 +0000 (-0400) Subject: do_cmake: support the ubuntu 26.04 version of python in build script X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b9d9529553bb05faeb2424cbeb7bc3fda839a12b;p=ceph.git do_cmake: support the ubuntu 26.04 version of python in build script Signed-off-by: John Mulligan --- diff --git a/do_cmake.sh b/do_cmake.sh index 64c198f439ac..383272456409 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -47,7 +47,9 @@ if [ -r /etc/os-release ]; then ;; ubuntu) MAJOR_VER=$(echo "$VERSION_ID" | sed -e 's/\..*$//') - if [ "$MAJOR_VER" -ge "24" ] ; then + if [ "$MAJOR_VER" -ge "26" ] ; then + PYBUILD="3.14" + elif [ "$MAJOR_VER" -ge "24" ] ; then PYBUILD="3.12" elif [ "$MAJOR_VER" -ge "22" ] ; then PYBUILD="3.10"