From 437c3297437d055171e2a4dd39c752b8454589e2 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Tue, 15 Aug 2023 17:37:00 +0100 Subject: [PATCH] Build broker bindings for older versions of Python Recently (GH-370), the version of Python required to build the bindings was upped to 3.7. This is problematic, as we have older versions of Python in distributions that we still support; this lowers this version again. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20644d7d..9b81cbca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -453,7 +453,7 @@ endif () if (NOT DISABLE_PYTHON_BINDINGS) set(Python_ADDITIONAL_VERSIONS 3) - find_package(Python 3.7 COMPONENTS Interpreter Development) + find_package(Python 3.5 COMPONENTS Interpreter Development) if (NOT Python_FOUND) message(STATUS "Skipping Python bindings: Python interpreter not found")