From 379f5db5162d0cf4b3439d0a365308c0f6b3f8e5 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 19 Jul 2021 10:14:14 +0200 Subject: [PATCH] require Python 3.6 also in CMakeFile This had been forgotten when increasing the minimum Python version. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() #----------------------------------------------------------------------------- -- 2.39.5