From: Michael Jeanson Date: Tue, 28 Mar 2023 14:43:51 +0000 (-0400) Subject: Bump minimal python3 version to 3.4 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=4a0509e2ef0e8135739b84ade52797ac1987f73a Bump minimal python3 version to 3.4 Change-Id: If1e264d09fccba53d000211681de91d633fbd28f Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- diff --git a/README.adoc b/README.adoc index b7b0f620a..2b2a96d05 100644 --- a/README.adoc +++ b/README.adoc @@ -81,7 +81,7 @@ Debian/Ubuntu package: `liblttng{nbh}ust{nbh}dev` * **Perl**: `make{nbsp}check` and tests. -* **https://www.python.org/[Python]{nbsp}≥{nbsp}3.0**: +* **https://www.python.org/[Python]{nbsp}≥{nbsp}3.4**: `make{nbsp}check` and tests. + Debian/Ubuntu package: `python3` diff --git a/configure.ac b/configure.ac index 31e9f03c1..bd6f45d5d 100644 --- a/configure.ac +++ b/configure.ac @@ -656,7 +656,7 @@ AM_CONDITIONAL([PYTHON_BINDING], [test "x$enable_python_binding" = xyes]) if test "x$enable_python_binding" = xyes; then AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ]) AS_IF([test x$enable_shared = xno], [ AC_MSG_ERROR([Python bindings require shared libraries.]) ]) - AM_PATH_PYTHON([3.0]) + AM_PATH_PYTHON([3.4]) AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config]) AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])