From: Mark Andrews Date: Mon, 13 Jul 2026 07:00:40 +0000 (+1000) Subject: Extend meson.build to know about python 3.13 and 3.14 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=3b5002de63ea68a4e5739198ecf5603b0efb3f40;p=thirdparty%2Fbind9.git Extend meson.build to know about python 3.13 and 3.14 --- diff --git a/meson.build b/meson.build index 4852db29dfc..1cd8d27305f 100644 --- a/meson.build +++ b/meson.build @@ -98,7 +98,17 @@ fstrm_capture = find_program('fstrm_capture', required: false) git = find_program('git', required: false) jq = find_program('jq', required: false) nc = find_program('nc', required: false) -python = find_program(['python3.12', 'python3.11', 'python3', 'python'], required: false) +python = find_program( + [ + 'python3.14', + 'python3.13', + 'python3.12', + 'python3.11', + 'python3', + 'python', + ], + required: false, +) xmllint = find_program('xmllint', required: false) xsltproc = find_program('xsltproc', required: false) pytest = find_program(