From 2f2e90c43c50168aad8dd21ee4c019393edf6051 Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Thu, 10 Apr 2025 09:29:53 +0200 Subject: [PATCH] fix for rh8 --- python/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 09de736..c7b844e 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,12 +1,13 @@ find_package (Python 3.10 COMPONENTS Interpreter Development REQUIRED) +set(PYBIND11_FINDPYTHON ON) # Download or find pybind11 depending on configuration if(AARE_FETCH_PYBIND11) FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 - GIT_TAG v2.13.0 + GIT_TAG v2.13.6 ) FetchContent_MakeAvailable(pybind11) else()