diff --git a/CHANGES b/CHANGES index 2ee2e856..09b5c1ac 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +2.7.0-dev.21 | 2023-08-15 17:39:57 +0100 + + * Build broker bindings for older versions of Python (Johanna Amann, Corelight) + + 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. + 2.7.0-dev.19 | 2023-07-31 10:35:39 -0700 * Force rebuilds of alpine, debian-11, ubuntu-2210, and Windows CI images (Tim Wojtulewicz, Corelight) 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") diff --git a/VERSION b/VERSION index c18630ed..d7ec78ee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.0-dev.19 +2.7.0-dev.21