| commit | 536e9fd8415705fc788658c0e116106c62116c1f | [log] [tgz] |
|---|---|---|
| author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Mon Dec 22 06:22:14 2025 +0000 |
| committer | Mizux Seiha <mizux.dev@gmail.com> | Mon Dec 22 11:04:32 2025 +0100 |
| tree | 4cd1e8306e6900beabdbfa396cffc3a1161a100f | |
| parent | 6efc9f1b1a4dd5fe81821974fb98720f62f96f2e [diff] |
Bump bazel-contrib/setup-bazel in the github-actions group Bumps the github-actions group with 1 update: [bazel-contrib/setup-bazel](https://github.com/bazel-contrib/setup-bazel). Updates `bazel-contrib/setup-bazel` from 0.15.0 to 0.16.0 - [Release notes](https://github.com/bazel-contrib/setup-bazel/releases) - [Commits](https://github.com/bazel-contrib/setup-bazel/compare/0.15.0...0.16.0) --- updated-dependencies: - dependency-name: bazel-contrib/setup-bazel dependency-version: 0.16.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
Github-CI: | OS \ Build system | Bazel | |:------- | :---: | | Linux (amd64) | | | MacOS (
amd64) | | | MacOS (
arm64) | | | Windows (
amd64) | |
Provided rules:
pybind_extension: Builds a python extension, automatically adding the required build flags and pybind11 dependencies. It defines a target which can be included as a data dependency of a py_* target.pybind_library: Builds a C++ library, automatically adding the required build flags and pybind11 dependencies. This library can then be used as a dependency of a pybind_extension. The arguments match a cc_library.pybind_library_test: Builds a C++ test for a pybind_library. The arguments match a cc_test.To test a pybind_extension, the most common approach is to write the test in Python and use the standard py_test build rule.
To embed Python, add @rules_python//python/cc:current_py_cc_libs as a dependency to your cc_binary.
In your WORKSPACE file:
http_archive( name = "pybind11_bazel", strip_prefix = "pybind11_bazel-<version>", urls = ["https://github.com/pybind/pybind11_bazel/archive/v<version>.zip"], ) # We still require the pybind library. http_archive( name = "pybind11", build_file = "@pybind11_bazel//:pybind11-BUILD.bazel", strip_prefix = "pybind11-<version>", urls = ["https://github.com/pybind/pybind11/archive/v<version>.zip"], )
Then, in your BUILD file:
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
In your MODULE.bazel file:
bazel_dep(name = "pybind11_bazel", version = "<version>")
Usage in your BUILD file is as described previously.