diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-01-04 13:17:14 +0100 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-01-04 13:24:13 +0100 |
commit | a70449b9c6496c221fce70242a51c619dcd63ad9 (patch) | |
tree | c7413689ff6520b6ba71bd4ead38e1d06d85e152 | |
parent | 37440c2336b911a48e83f43f277620cb83d7bf6c (diff) |
meson.build: Simplify lookup of python command
See libsigcplusplus PR#83
-rw-r--r-- | meson.build | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/meson.build b/meson.build index 44e2f9c..1a7686a 100644 --- a/meson.build +++ b/meson.build @@ -45,13 +45,7 @@ project_build_root = meson.current_build_dir() cpp_compiler = meson.get_compiler('cpp') is_msvc = cpp_compiler.get_id() == 'msvc' -python3 = import('python').find_installation() - -python_version = python3.language_version() -python_version_req = '>= 3.5' -if not python_version.version_compare(python_version_req) - error('Requires Python @0@, found @1@.'.format(python_version_req, python_version)) -endif +python3 = find_program('python3', version: '>=3.5') # Do we build from a git repository? # Suppose we do if and only if the meson.build file is tracked by git. |