From b65666d4befbd451d6608eb8ed16545a7564e7eb Mon Sep 17 00:00:00 2001 From: Spirit <31540351+sp1ritCS@users.noreply.github.com> Date: Wed, 9 Sep 2020 07:26:34 +0000 Subject: [PATCH] Clean up meson warnings (#2) Co-authored-by: Florian Singer --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index f97a5d0f..fe50298b 100644 --- a/meson.build +++ b/meson.build @@ -1,12 +1,12 @@ project('com.github.rafostar.Clapper', version: '0.0.0', - meson_version: '>= 0.47.0', + meson_version: '>= 0.50.0', license: 'GPL3', default_options: [ 'warning_level=2' ] ) -python = import('python3') -python_bin = python.find_python() +python = import('python') +python_bin = python.find_installation('python3') if not python_bin.found() error('No valid python3 binary found')