diff mbox series

[libgpiod,2/2] build: update the required python version

Message ID 20230116151646.338282-2-brgl@bgdev.pl
State New
Headers show
Series [libgpiod,1/2] build: drop unused python-related bits from configure.ac | expand

Commit Message

Bartosz Golaszewski Jan. 16, 2023, 3:16 p.m. UTC
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

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 <bartosz.golaszewski@linaro.org>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index d305506..7b8c65a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -216,7 +216,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])