From 74e53e512ce6b860aba5840e78abe2a34906f475 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Mon, 16 Jan 2023 16:15:25 +0100 Subject: [PATCH] build: update the required python version We don't guarantee libgpiod python bindings to work with anything older than python 3.9. Let's fix the required version in configure.ac. Signed-off-by: Bartosz Golaszewski --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 58ad253..4a91723 100644 --- a/configure.ac +++ b/configure.ac @@ -215,7 +215,7 @@ AM_CONDITIONAL([WITH_BINDINGS_PYTHON], [test "x$with_bindings_python" = xtrue]) if test "x$with_bindings_python" = xtrue then - AM_PATH_PYTHON([3.0], [], + AM_PATH_PYTHON([3.9], [], [AC_MSG_ERROR([python3 not found - needed for python bindings])]) AC_CHECK_PROG([has_python_config], [python3-config], [true], [false]) -- 2.30.2