osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/39801?usp=email )
Change subject: configure: set min python version check to 3.5 ......................................................................
configure: set min python version check to 3.5
The osmo-gsm-tester and 201705 jobs, which use the OE poky SDK from 2017 have started failing since the check for python 3.6 was added. This SDK has version 3.5, so lower the required version check to that for now.
Fixes: 489a6f ("configure.ac: check for Python interpreter unconditionally") Change-Id: Ia39e7e04dd8a31efaf87fd1f0fbbfdc5b5fa37c2 --- M configure.ac 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/01/39801/1
diff --git a/configure.ac b/configure.ac index 25db55c..80d1b76 100644 --- a/configure.ac +++ b/configure.ac @@ -175,7 +175,8 @@
dnl Search for a Python interpreter on the system dnl python is needed at built-time for auto-generating code -AM_PATH_PYTHON([3.6]) +dnl Don't require a newer version than 3.5 for now, as poky 201705 ships that +AM_PATH_PYTHON([3.5])
PKG_CHECK_MODULES(TALLOC, [talloc >= 2.1.0])