summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2024-07-03 16:30:29 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2024-07-03 16:30:29 +0200
commit1ade5c2f9f3b6939f846115a64cdbefa8a12a868 (patch)
tree4cd01410b461f679bfc5882f10152ef9c70f2677
parentb73651df94a8bf0a4bd8283231611d263fd1aac4 (diff)
meson.build: Require python3 >= 3.7
That's what Meson requires.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 494160a..246d2a9 100644
--- a/meson.build
+++ b/meson.build
@@ -45,7 +45,7 @@ project_build_root = meson.current_build_dir()
cpp_compiler = meson.get_compiler('cpp')
is_msvc = cpp_compiler.get_id() == 'msvc'
-python3 = find_program('python3', version: '>=3.5')
+python3 = find_program('python3', version: '>=3.7')
# Do we build from a git repository?
# Suppose we do if and only if the meson.build file is tracked by git.