From e835ece93514c693466c418a975ce97937aa89bc Mon Sep 17 00:00:00 2001 From: pasta Date: Mon, 7 Oct 2024 17:03:05 -0500 Subject: [PATCH] refactor: bump pybind version to 2.13.6 --- python-bindings/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-bindings/CMakeLists.txt b/python-bindings/CMakeLists.txt index 4e0db652b..2726399ed 100644 --- a/python-bindings/CMakeLists.txt +++ b/python-bindings/CMakeLists.txt @@ -3,7 +3,7 @@ include(FetchContent) FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.0 + GIT_TAG v2.13.6 ) FetchContent_MakeAvailable(pybind11)