This is an automated email from the ASF dual-hosted git repository.
kpvdr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-interop-test.git
The following commit(s) were added to refs/heads/main by this push:
new 0f93149 RHEL8 updated available python to 3.11, breaks detection of
installed 3.9
0f93149 is described below
commit 0f931493f083588733864b7c9b62e67e9f7fb8f0
Author: Kim van der Riet <[email protected]>
AuthorDate: Mon Jan 29 11:23:35 2024 -0500
RHEL8 updated available python to 3.11, breaks detection of installed 3.9
---
CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a7dcd26..2838341 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -24,9 +24,9 @@ cmake_minimum_required(VERSION 3.16.3 FATAL_ERROR)
set (ErrorFlag FALSE)
# Find Python
-find_package (Python 3 COMPONENTS Interpreter Development)
+find_package (Python 3.9 COMPONENTS Interpreter Development)
if (NOT Python_FOUND)
- message (STATUS "ERROR: Python 3 not found, but is required")
+ message (STATUS "ERROR: Python 3.9 not found, but is required")
set (ErrorFlag TRUE)
endif ()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]