Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bazelversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8.7.0
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bazel_dep(name = "abseil-py", version = "2.1.0", repo_name = "com_google_absl_py
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_cc", version = "0.0.15")
bazel_dep(name = "rules_python", version = "0.40.0")
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
bazel_dep(name = "pybind11_bazel", version = "3.0.1")
bazel_dep(name = "pybind11_abseil", version = "202402.0")
bazel_dep(name = "protobuf", version = "29.2", repo_name = "com_google_protobuf")
bazel_dep(name = "grpc", version = "1.56.3.bcr.1", repo_name = "com_github_grpc_grpc")
Expand Down
11 changes: 4 additions & 7 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ python_register_multi_toolchains(
"3.11",
"3.10",
"3.9",
"3.8"
],
)

Expand All @@ -84,14 +83,12 @@ multi_pip_parse(
"3.11": "@python_3_11_host//:python",
"3.10": "@python_3_10_host//:python",
"3.9": "@python_3_9_host//:python",
"3.8": "@python_3_8_host//:python",
},
requirements_lock = {
"3.12": "//pybind11_protobuf/requirements:requirements_lock_3_12.txt",
"3.11": "//pybind11_protobuf/requirements:requirements_lock_3_11.txt",
"3.10": "//pybind11_protobuf/requirements:requirements_lock_3_10.txt",
"3.9": "//pybind11_protobuf/requirements:requirements_lock_3_9.txt",
"3.8": "//pybind11_protobuf/requirements:requirements_lock_3_8.txt",
},
)

Expand All @@ -102,8 +99,8 @@ install_deps()
# https://github.com/pybind/pybind11_bazel
git_repository(
name = "pybind11_bazel",
commit = "2b6082a4d9d163a52299718113fa41e4b7978db5",
#tag = "v2.13.6", # 2024/10/21
commit = "d5f6a112138c672daec4ca279f33baae95ca10ec",
#tag = "v3.0.1", # 2026/03/19
remote = "https://github.com/pybind/pybind11_bazel.git",
)

Expand All @@ -112,8 +109,8 @@ git_repository(
new_git_repository(
name = "pybind11",
build_file = "@pybind11_bazel//:pybind11-BUILD.bazel",
commit = "a2e59f0e7065404b44dfe92a28aca47ba1378dc4",
#tag = "v2.13.6",
commit = "f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8",
#tag = "v3.0.1",
remote = "https://github.com/pybind/pybind11.git",
)

Expand Down
6 changes: 0 additions & 6 deletions pybind11_protobuf/requirements/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ load("@python//3.12:defs.bzl", compile_pip_requirements_3_12 = "compile_pip_requ
load("@python//3.11:defs.bzl", compile_pip_requirements_3_11 = "compile_pip_requirements")
load("@python//3.10:defs.bzl", compile_pip_requirements_3_10 = "compile_pip_requirements")
load("@python//3.9:defs.bzl", compile_pip_requirements_3_9 = "compile_pip_requirements")
load("@python//3.8:defs.bzl", compile_pip_requirements_3_8 = "compile_pip_requirements")
compile_pip_requirements_3_12(
name = "requirements_3_12",
src = "requirements.in",
Expand All @@ -27,8 +26,3 @@ compile_pip_requirements_3_9(
src = "requirements.in",
requirements_txt = "requirements_lock_3_9.txt",
)
compile_pip_requirements_3_8(
name = "requirements_3_8",
src = "requirements.in",
requirements_txt = "requirements_lock_3_8.txt",
)
23 changes: 0 additions & 23 deletions pybind11_protobuf/requirements/requirements_lock_3_8.txt

This file was deleted.

Loading