Skip to content

Commit

Permalink
Remove python version check
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsoSR committed Sep 30, 2024
1 parent 05ed975 commit f9bcfca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit f9bcfca

Please sign in to comment.