]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Extend meson.build to know about python 3.13 and 3.14 12389/head
authorMark Andrews <marka@isc.org>
Mon, 13 Jul 2026 07:00:40 +0000 (17:00 +1000)
committerMark Andrews <marka@isc.org>
Wed, 15 Jul 2026 23:04:24 +0000 (09:04 +1000)
meson.build

index 4852db29dfc014fe2472ca0f91897490fa1a9149..1cd8d27305f8dfa9b59fa136277c5c99c2530a11 100644 (file)
@@ -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(