From 73bef34d95768a0fc0676023bd68111946deb417 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Wed, 12 Feb 2025 14:31:02 +0100 Subject: [PATCH] cmake: update pybind11 to v2.13.6 * sync Dependencies.txt --- Dependencies.txt | 6 +++--- cmake/dependencies/CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dependencies.txt b/Dependencies.txt index 4120840211..f39cc1cc25 100644 --- a/Dependencies.txt +++ b/Dependencies.txt @@ -12,9 +12,9 @@ GLPK=5.0 HiGHS=v1.9.0 Scip=v920 # Python -pybind11=v2.12.0 -pybind11_abseil=52f2739 -pybind11_protobuf=3b11990 +pybind11=v2.13.6 +pybind11_abseil=v202402.0 +pybind11_protobuf=84653a591aea5df482dc2bde42c19efafbd53a57 # Testing googletest=v1.15.2 benchmark=v1.9.1 diff --git a/cmake/dependencies/CMakeLists.txt b/cmake/dependencies/CMakeLists.txt index 0d693c4a7d..b6b849ec7a 100644 --- a/cmake/dependencies/CMakeLists.txt +++ b/cmake/dependencies/CMakeLists.txt @@ -176,7 +176,7 @@ if(BUILD_PYTHON AND BUILD_pybind11) FetchContent_Declare( pybind11 GIT_REPOSITORY "https://github.com/pybind/pybind11.git" - GIT_TAG "v2.13.1" + GIT_TAG "v2.13.6" GIT_SHALLOW TRUE PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/pybind11.patch" )