dependency: bump pybind_protobuf

This commit is contained in:
Corentin Le Molgat
2025-03-24 18:20:41 +01:00
parent 8f6258861d
commit f9cf5d17eb
2 changed files with 10 additions and 2 deletions

View File

@@ -49,6 +49,14 @@ git_override(
remote = "https://github.com/pybind/pybind11_abseil.git",
)
git_override(
module_name = "pybind11_protobuf",
commit = "f02a2b7653bc50eb5119d125842a3870db95d251",
#patch_strip = 1,
#patches = ["//patches:pybind11_protobuf.patch"],
remote = "https://github.com/pybind/pybind11_protobuf.git",
)
SUPPORTED_PYTHON_VERSIONS = [
"3.9",
"3.10",

View File

@@ -210,8 +210,8 @@ if(BUILD_PYTHON)
FetchContent_Declare(
pybind11_protobuf
GIT_REPOSITORY "https://github.com/pybind/pybind11_protobuf.git"
GIT_TAG "84653a591aea5df482dc2bde42c19efafbd53a57" # 2024/06/28
PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/pybind11_protobuf.patch"
GIT_TAG "f02a2b7653bc50eb5119d125842a3870db95d251" # 2025/02/10
#PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/pybind11_protobuf.patch"
#GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(pybind11_protobuf)