From b5214725df51e914f702c18b7e3055d545c29efd Mon Sep 17 00:00:00 2001 From: tomangelo2 Date: Sun, 17 Dec 2023 23:01:24 +0100 Subject: [PATCH] Switch required Python version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3992dcc30..9c9b2fc7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.16) option(TRANSLATIONS "Enable translations of help and level files" ON) if(TRANSLATIONS) - find_package(PythonInterp 2.7 REQUIRED) + find_package(PythonInterp 3.0 REQUIRED) else() message(STATUS "Translations disabled; only English files will be installed") endif()