From 9f83a7a89fbebad6b5d7bec832f1a8735f146b3d Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 28 Apr 2025 12:37:58 -0400 Subject: [PATCH 1/2] fix: update pybind11 to support CMake 4.0 Signed-off-by: Henry Schreiner --- projects/hello-pybind11/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/hello-pybind11/CMakeLists.txt b/projects/hello-pybind11/CMakeLists.txt index bdf8675..fef4e1a 100644 --- a/projects/hello-pybind11/CMakeLists.txt +++ b/projects/hello-pybind11/CMakeLists.txt @@ -8,8 +8,8 @@ include(FetchContent) FetchContent_Declare( pybind11 - URL https://github.com/pybind/pybind11/archive/refs/tags/v2.10.4.tar.gz - URL_HASH SHA256=832e2f309c57da9c1e6d4542dedd34b24e4192ecb4d62f6f4866a737454c9970 + URL https://github.com/pybind/pybind11/archive/refs/tags/v2.13.6.tar.gz + URL_HASH SHA256=e08cb87f4773da97fa7b5f035de8763abc656d87d5773e62f6da0587d1f0ec20 ) FetchContent_MakeAvailable(pybind11) From ece5affa8c7d8913a175b6246e1ec969a7a507c0 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 28 Apr 2025 12:55:22 -0400 Subject: [PATCH 2/2] chore: update macos image Signed-off-by: Henry Schreiner --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f46ec6c..25123d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - runs-on: [ubuntu-latest, macos-12, windows-latest] + runs-on: [ubuntu-latest, macos-13, windows-latest] session: [dist, test] name: ${{ matrix.session }} on ${{ matrix.runs-on }}