We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.bzl.<N>
1 parent 2e5f4a6 commit c65db0aCopy full SHA for c65db0a
python_configure.bzl
@@ -475,6 +475,9 @@ def _extension_impl(ctx):
475
)
476
477
version = _parse_my_own_version_from_module_dot_bazel(ctx)
478
+ # The pybind11_bazel version should typically just be the pybind11 version,
479
+ # but can end with ".bzl.<N>" if the Bazel plumbing was updated separately.
480
+ version = version.split(".bzl.")[0]
481
http_archive(
482
name = "pybind11",
483
build_file = "//:pybind11.BUILD",
0 commit comments