From c77bdfa645229ff66805fb8809e8406a85e27684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?SYCLo=C3=AFd?= <213797226+sycloid@users.noreply.github.com> Date: Fri, 12 Sep 2025 07:41:04 -0500 Subject: [PATCH] Update pybind11 version used to 3.0.1 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d95176d12..378043b8f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,8 +122,8 @@ include(FetchContent) FetchContent_Declare( pybind11 - URL https://github.com/pybind/pybind11/archive/refs/tags/v2.13.6.tar.gz - URL_HASH SHA256=e08cb87f4773da97fa7b5f035de8763abc656d87d5773e62f6da0587d1f0ec20 + URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.1.tar.gz + URL_HASH SHA256=741633da746b7c738bb71f1854f957b9da660bcd2dce68d71949037f0969d0ca FIND_PACKAGE_ARGS NAMES pybind11 ) FetchContent_MakeAvailable(pybind11)