From 643b8d062ac11efef6c74cf8af7281079e2533e9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 30 Mar 2022 15:48:44 +0000 Subject: [PATCH] configure: Require Python >= 3.9 We are using a couple of newer Python features which are only available from 3.9 onwards. Signed-off-by: Michael Tremer --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 20684e6..bcab491 100644 --- a/configure.ac +++ b/configure.ac @@ -154,7 +154,7 @@ AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$have_systemd" = "xyes"]) # ------------------------------------------------------------------------------ # Python -AM_PATH_PYTHON([3.4]) +AM_PATH_PYTHON([3.9]) PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}]) # Perl -- 2.39.5