From 324d6d1a6d2d5c6d223799e7bbd7ea9fb4a29c77 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 28 Jun 2019 00:06:28 +0200 Subject: [PATCH] For python 3 require at least 3.5 This handles configure.ac and os::python23. What remains to be done is cmake. --- configure.ac | 2 +- src/support/os.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 7bf598db44..fb7efb1656 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,7 @@ for file in config/install-sh ; do done # Find a suitable python interpreter -LYX_PATH_PYTHON23([2.7.0], [3.3.0]) +LYX_PATH_PYTHON23([2.7.0], [3.5.0]) # do the usual python setup stuff AM_PATH_PYTHON diff --git a/src/support/os.cpp b/src/support/os.cpp index 9840ad3f45..c381203313 100644 --- a/src/support/os.cpp +++ b/src/support/os.cpp @@ -65,7 +65,7 @@ static string const python23_call(string const & binary, bool verbose = false) int major = convert(sm.str(1)); int minor = convert(sm.str(2)); - if((major == 2 && minor < 7) || (major == 3 && minor < 4)) + if((major == 2 && minor < 7) || (major == 3 && minor < 5)) return string(); if (verbose) -- 2.39.5