From b9d9529553bb05faeb2424cbeb7bc3fda839a12b Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 30 Apr 2026 15:48:09 -0400 Subject: [PATCH] do_cmake: support the ubuntu 26.04 version of python in build script Signed-off-by: John Mulligan --- do_cmake.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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" -- 2.47.3