From bbbdc27151ae8334870b693c0a732eda136225ad Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Mon, 30 Sep 2019 11:23:20 +0100 Subject: [PATCH] =?UTF-8?q?build:=20Bump=20Python=20requirement=20to=20?= =?UTF-8?q?=E2=89=A5=203.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We already depend on Meson 0.49.2, which depends on Python 3.5, so we’ve actually implicitly had this requirement for a while. Might as well make it explicit. Signed-off-by: Philip Withnall --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d52bb01bd..088edbedc 100644 --- a/meson.build +++ b/meson.build @@ -1994,7 +1994,7 @@ python = import('python').find_installation('python3') python_name = 'python3' python_version = python.language_version() -python_version_req = '>=3.4' +python_version_req = '>=3.5' if not python_version.version_compare(python_version_req) error('Requires Python @0@, @1@ found.'.format(python_version_req, python_version)) endif