From 6b4247be52d4078f57df999edb3ae0cd3b4d6b34 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Tue, 22 Oct 2024 11:40:40 +0200 Subject: [PATCH] CMake/python_venv: Do not request COMPONENT Development --- cmake/python_venv.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/python_venv.cmake b/cmake/python_venv.cmake index ff649cdda..9d30736ae 100644 --- a/cmake/python_venv.cmake +++ b/cmake/python_venv.cmake @@ -50,7 +50,7 @@ function( find_python_venv VENV_PATH PYTHON_VERSION ) set( Python3_ROOT_DIR "${VENV_PATH}" ) # Launch a new search - find_package( Python3 ${PYTHON_VERSION} COMPONENTS Interpreter Development REQUIRED ) + find_package( Python3 ${PYTHON_VERSION} COMPONENTS Interpreter REQUIRED ) # Find the binary directory of the virtual environment execute_process(