From: Sarah Hoffmann Date: Mon, 19 Jul 2021 08:14:14 +0000 (+0200) Subject: require Python 3.6 also in CMakeFile X-Git-Tag: v4.0.0~49^2~2 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/379f5db5162d0cf4b3439d0a365308c0f6b3f8e5 require Python 3.6 also in CMakeFile This had been forgotten when increasing the minimum Python version. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 38551da7..976f0698 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ endif() #----------------------------------------------------------------------------- if (BUILD_IMPORTER) - find_package(PythonInterp 3.5 REQUIRED) + find_package(PythonInterp 3.6 REQUIRED) endif() #-----------------------------------------------------------------------------