commit | 9b73d02ae1756ef52e35ec78b3b114b6e4db460f | [log] [tgz] |
---|---|---|
author | Ignas Anikevicius <240938+aignas@users.noreply.github.com> | Wed Nov 01 09:36:19 2023 +0900 |
committer | GitHub <noreply@github.com> | Wed Nov 01 00:36:19 2023 +0000 |
tree | 08161627b5356bcbad4c776a48b634ff34235a27 | |
parent | 2a074f8d72aa52d48ccebfd68c8f10d560cea3a5 [diff] |
chore(pip_parse, gazelle): generate/use hub repo aliases by default (#1525) This makes `pip_parse.incompatible_generate_aliases = True` the default. This only affects workspace builds; it is already the default for bzlmod. Summary: - Enable the generation of aliases in `pip_repository`. - Flip usage of aliases in `gazelle`. - Remove usage of the old flags from the example code. - Update the `gazelle` manifest generator to leave the `gazelle_python.yaml` manifest unchanged for people who have `use_pip_repository_aliases = True` in their `BUILD.bazel` files. Once they remove the flag, the `gazelle_python.yaml` will be updated. - Update `multi_pip_parse` to handle sub-hub repositories where the `all_requirements` returns aliased targets. Fixes #1498
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.