| commit | 7f1d59e750ba510dcbc985e8cd94413b5434981e | [log] [tgz] |
|---|---|---|
| author | Jeremy Volkman <jeremy@cedarai.com> | Sat Jun 15 21:14:40 2024 -0700 |
| committer | GitHub <noreply@github.com> | Sun Jun 16 04:14:40 2024 +0000 |
| tree | abe5c26a016d19d4eea332a7caf612c8616ada3e | |
| parent | 82054683dd7ecd6db2304e8a26e6b1b6f2497da9 [diff] |
fix(bzlmod): use same target in requirement('foo') and all_requirements (#1973)
We have at least one instance in our pre-bzlmod workspace like:
```
deps = list(all_requirements)
deps.remove(requirement('foo'))
```
But when using bzlmod, the generated `all_requirements` list contains
targets like `@@rules_python~~pip~my_deps//sqlalchemy:sqlalchemy`,
whereas `requirement('sqlalchemy')` will return
`@@rules_python~~pip~my_deps//sqlalchemy:pkg`. So this operation now
fails.
This change makes `all_requirements` also use the `:pkg` targets to
match `requirement`.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.