From ddd1e012ee5ffafc17b33a1155e282e617cb4b09 Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Fri, 26 May 2017 09:20:41 -0400 Subject: [PATCH 1/1] Set the minimum Python version to 3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Francis Deslauriers Signed-off-by: Jérémie Galarneau --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index db815a7b..eb3f34d0 100644 --- a/configure.ac +++ b/configure.ac @@ -233,7 +233,7 @@ AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes]) if test "x${enable_python:-yes}" = xyes; then AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ]) - AM_PATH_PYTHON + AM_PATH_PYTHON([3.0], [], [ AC_MSG_ERROR([Python 3.0 or newer is needed]) ]) AM_PATH_PYTHON_MODULES([PYTHON]) # pythondir is the path where extra modules are to be installed -- 2.34.1