From cbdb4b212e8e16ad0c95f149ab9ae229aee7c0fd Mon Sep 17 00:00:00 2001 From: philip skeps Date: Wed, 25 Dec 2024 20:11:04 -0500 Subject: [PATCH] changed the pybind11 version to work with versions of python 3.11 or later, in accordance with https://github.com/pybind/pybind11/discussions/4333 --- VERSION | 2 +- pygamer/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index f1547e6d..615d0e05 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.7 +486 diff --git a/pygamer/CMakeLists.txt b/pygamer/CMakeLists.txt index 3b63d1c6..b68939c8 100644 --- a/pygamer/CMakeLists.txt +++ b/pygamer/CMakeLists.txt @@ -34,7 +34,7 @@ else() FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.7.1 + GIT_TAG v2.12.0 GIT_SHALLOW TRUE SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/pybind11-src" BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/pybind11-build"