From 9f37d52b8a492c98d957f5e6179eb93a64aedd25 Mon Sep 17 00:00:00 2001 From: Leonhard Spiegelberg Date: Wed, 20 Dec 2023 20:58:55 -0800 Subject: [PATCH] update to more recent pybind11 version --- tuplex/python/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuplex/python/CMakeLists.txt b/tuplex/python/CMakeLists.txt index e7ed0c139..62f4fff74 100644 --- a/tuplex/python/CMakeLists.txt +++ b/tuplex/python/CMakeLists.txt @@ -18,7 +18,7 @@ message(STATUS "Pybind11 uses python version ${Python3_VERSION}") set(PYBIND11_FINDPYTHON OFF CACHE INTERNAL "") set(PYBIND11_PYTHON_VERSION "${Python3_VERSION}" CACHE INTERNAL "") FetchContent_Declare(pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 - GIT_TAG v2.10.4 ) + GIT_TAG v2.11.1 ) FetchContent_GetProperties(pybind11) if(NOT pybind11_POPULATED) FetchContent_Populate(pybind11)