From fc4ca1a60500217d380e89b1b21ea8f192d5a835 Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Sun, 23 Jun 2024 12:04:16 -0700 Subject: [PATCH] Upgrade pybind11 to v2.12.0 (cherry picked from commit 24b2c723a098f9ae7af440e2c07a1c84ec3f7b88) --- python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index cc23a4001ca7b..37cadf4f8de14 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -10,7 +10,7 @@ include(FetchContent) FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 - GIT_TAG v2.11.1 + GIT_TAG v2.12.0 ) FetchContent_MakeAvailable(pybind11)