From 2b8064b50bf72c152b43d79896df8e7f825798a2 Mon Sep 17 00:00:00 2001 From: nnshah1 Date: Thu, 15 Jun 2023 15:05:44 -0700 Subject: [PATCH] Pin pybind version to v2.10.0 commit to avoid unanticipated changes --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3659c7bd..e2c5ab8e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,8 @@ FetchContent_MakeAvailable(repo-common repo-core repo-backend) FetchContent_Declare( pybind11 GIT_REPOSITORY "https://github.com/pybind/pybind11" - GIT_TAG "v2.10" + # COMMIT ID for v2.10.0 + GIT_TAG "aa304c9c7d725ffb9d10af08a3b34cb372307020" GIT_SHALLOW ON ) FetchContent_MakeAvailable(pybind11)