build: update the required python version
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 16 Jan 2023 15:15:25 +0000 (16:15 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 18 Jan 2023 09:52:06 +0000 (10:52 +0100)
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

index 58ad253a6022bf89039eff996eae940f68b09226..4a91723853c22a14064aed70f04dfe4958c037ab 100644 (file)
@@ -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])