From f9bcfcae57af428f82569453c16b886192619dac Mon Sep 17 00:00:00 2001 From: alfonso Date: Mon, 30 Sep 2024 09:29:45 +0200 Subject: [PATCH] Remove python version check --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a4eb646a..c18b81b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,10 +138,10 @@ enable_testing() # python. include(YACMAPythonSetup) -# python version check. -if (${PYTHON_VERSION_MAJOR} LESS 3 OR (${PYTHON_VERSION_MAJOR} EQUAL 3 AND ${PYTHON_VERSION_MINOR} LESS 4)) - message(FATAL_ERROR "Minimum supported python version is 3.4.") -endif () +# # python version check. +# if (${PYTHON_VERSION_MAJOR} LESS 3 OR (${PYTHON_VERSION_MAJOR} EQUAL 3 AND ${PYTHON_VERSION_MINOR} LESS 4)) +# message(FATAL_ERROR "Minimum supported python version is 3.4.") +# endif () # pybind11. if (${CMAKE_PROJECT_NAME} STREQUAL ${PROJECT_NAME})