summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-11-07 10:44:16 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2020-11-07 10:44:16 +0100
commit3e5eece5e1e5d77d2c5ea355bc8637549388b9d5 (patch)
tree6e367ad82c0f8feb758c1c6a8156c8e75965ebc6
parent19c67f77e23cf80da957bfa0b28c1b31d81339f0 (diff)
downloadgobject-introspection-3e5eece5e1e5d77d2c5ea355bc8637549388b9d5.tar.gz
Require Python 3.5
3.4 is long EOL and we don't test it, so don't pretend that we support it.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 3bbcf8de..546ab885 100644
--- a/meson.build
+++ b/meson.build
@@ -18,7 +18,7 @@ pymod = import('python')
python = pymod.find_installation(get_option('python'))
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