From 968e97bd4bab7d2232d031c121fb98c7068c7d6d Mon Sep 17 00:00:00 2001 From: Joakim Soderberg Date: Tue, 17 Dec 2013 14:31:22 +0100 Subject: [PATCH] Minimum required python version is 2.4. Got rid of TODO... The version you specify to find_package is the minimum version, so exactly what we want. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ea26e833..38ffb6ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -681,7 +681,7 @@ endif() if (NOT EVENT__DISABLE_TESTS) # (We require python to generate the regress tests) - find_package(PythonInterp 2) # TODO: Require 2.4+ here... + find_package(PythonInterp 2.4) # # Generate Regress tests. -- 2.40.0