Skip to content

Commit

Permalink
Build broker bindings for older versions of Python
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
0xxon committed Aug 15, 2023
1 parent 8dacaa3 commit 437c329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 437c329

Please sign in to comment.