From ca85068b24b95ce3277aea3530a6ba1e8f910c11 Mon Sep 17 00:00:00 2001 From: Gigon Bae Date: Tue, 24 Oct 2023 18:13:34 -0700 Subject: [PATCH] Update pybind11 to v2.11.1 This PR updates pybind11 to v2.11.1. Even with the latest version of pybind11, we still have an issue with `pybind11::array_t` when cuCIM is used in multithread without importing numpy in the main thread. https://github.com/pybind/pybind11/pull/4877 Will need to wait for the next release of pybind11. Signed-off-by: Gigon Bae --- cpp/cmake/deps/pybind11.cmake | 2 +- python/cmake/deps/pybind11.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/cmake/deps/pybind11.cmake b/cpp/cmake/deps/pybind11.cmake index 1fbba6c9d..2bab5c8b4 100644 --- a/cpp/cmake/deps/pybind11.cmake +++ b/cpp/cmake/deps/pybind11.cmake @@ -17,7 +17,7 @@ if (NOT TARGET deps::pybind11) FetchContent_Declare( deps-pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.3 + GIT_TAG v2.11.1 GIT_SHALLOW TRUE ) FetchContent_GetProperties(deps-pybind11) diff --git a/python/cmake/deps/pybind11.cmake b/python/cmake/deps/pybind11.cmake index de4172935..7347ed651 100644 --- a/python/cmake/deps/pybind11.cmake +++ b/python/cmake/deps/pybind11.cmake @@ -17,7 +17,7 @@ if (NOT TARGET deps::pybind11) FetchContent_Declare( deps-pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.3 + GIT_TAG v2.11.1 GIT_SHALLOW TRUE ) FetchContent_GetProperties(deps-pybind11)