From 0095daefbc5b1f73c531e1b1e3e615c6b1647ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Fri, 20 Mar 2020 11:04:27 -0700 Subject: [PATCH] doc: enforce minimum python version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was still set to 3.4, and does not include REQUIRED to fail the build in case of an old version. Signed-off-by: Martí Bolívar --- doc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 4d5d07d349a..9cd0cff28d2 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -23,7 +23,7 @@ else() message(STATUS "West: not found") endif() -find_package(PythonInterp 3.4) +find_package(PythonInterp 3.6 REQUIRED) set(DOXYGEN_SKIP_DOT True) find_package(Doxygen REQUIRED) find_package(LATEX)