From 7289709b4dddec4277efcf78ff5132fc1e5d3ab4 Mon Sep 17 00:00:00 2001 From: Nuri Jung Date: Fri, 25 Oct 2024 22:40:22 +0900 Subject: [PATCH] chore(deps): bump pybind11 version to v2.13.6 --- cmake/NuriKitUtils.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/NuriKitUtils.cmake b/cmake/NuriKitUtils.cmake index f194a19c..d8a80b00 100644 --- a/cmake/NuriKitUtils.cmake +++ b/cmake/NuriKitUtils.cmake @@ -170,7 +170,7 @@ function(find_or_fetch_pybind11) cmake_policy(SET CMP0148 NEW) endif() - find_package(pybind11 2.12.0) + find_package(pybind11 2.13) if(pybind11_FOUND) message(STATUS "Found pybind11 ${pybind11_VERSION}") @@ -181,7 +181,7 @@ function(find_or_fetch_pybind11) Fetchcontent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.12.0 + GIT_TAG v2.13.6 ) nuri_make_available_deponly(pybind11) endif()