| commit | 124956742221c47b1a2265ea32a97f99074199ad | [log] [tgz] |
|---|---|---|
| author | UebelAndre <github@uebelandre.com> | Tue Jan 09 16:09:04 2024 -0800 |
| committer | GitHub <noreply@github.com> | Wed Jan 10 00:09:04 2024 +0000 |
| tree | 736a39f17f3fdfb2fb87bca2ae5455867f8747b4 | |
| parent | 4fe0db3cdcc063d5bdeab756e948640f3f16ae33 [diff] |
feat(runfiles): Add static methods to `Runfiles` class to simplify interface (#1656)
With this change we allow for more ergonomic creation of the runfiles
object and using type annotations:
```python
from python.runfiles import Runfiles
def main() -> None:
runfiles: Runfiles | None = Runfiles.Create()
```
Furthermore, the docs have been updated to describe pulling `runfiles`
library directly from `rules_python` to avoid the complexity of needing
to setup `pip_parse` to use this behavior.
---------
Co-authored-by: Ignas Anikevicius <240938+aignas@users.noreply.github.com>This repository is the home of the core Python rules -- py_library, py_binary, py_test, py_proto_library, and related symbols that provide the basis for Python support in Bazel. It also contains package installation rules for integrating with PyPI and other indices.
Documentation for rules_python is at https://rules-python.readthedocs.io and in the Bazel Build Encyclopedia.
Examples live in the examples directory.
Currently, the core rules build into the Bazel binary, and the symbols in this repository are simple aliases. However, we are migrating the rules to Starlark and removing them from the Bazel binary. Therefore, the future-proof way to depend on Python rules is via this repository. SeeMigrating from the Bundled Rules below.
The core rules are stable. Their implementation in Bazel is subject to Bazel's backward compatibility policy. Once migrated to rules_python, they may evolve at a different rate, but this repository will still follow semantic versioning.
The Bazel community maintains this repository. Neither Google nor the Bazel team provides support for the code. However, this repository is part of the test suite used to vet new Bazel releases. See How to contribute page for information on our development workflow.
For detailed documentation, see https://rules-python.readthedocs.io
See Bzlmod support for more details.