osmith submitted this change.
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(-)
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])
To view, visit change 39801. To unsubscribe, or for help writing mail filters, visit settings.