summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2019-09-30 11:23:20 +0100
committerPhilip Withnall <withnall@endlessm.com>2019-09-30 11:23:20 +0100
commitbbbdc27151ae8334870b693c0a732eda136225ad (patch)
tree64a961806297faa83c688b5d4c453cc8bdfb33f8
parent6192fd4cc080d50d0d8b337f11cbd7a7725389ee (diff)
downloadglib-bbbdc27151ae8334870b693c0a732eda136225ad.tar.gz
build: Bump Python requirement to ≥ 3.5
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 <withnall@endlessm.com>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
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