commit | 7fc79626b82d0ff3bb57584de2de9d03ddbbb3c4 | [log] [tgz] |
---|---|---|
author | hunshcn <hunsh.cn@gmail.com> | Mon May 20 12:21:52 2024 +0800 |
committer | GitHub <noreply@github.com> | Mon May 20 04:21:52 2024 +0000 |
tree | 953bdb81981c14eb3832dadaa6c2a02c95a3c8b8 | |
parent | 1036a4d02bc7864da98e9caa96238e70695c9d1e [diff] |
feat(gazelle): pure golang helper (#1895) Remove gazelle plugin's python deps and make it hermetic. No more relying on the system interpreter. Use TreeSitter to parse Python code and use https://github.com/pypi/stdlib-list to determine whether a module is in std lib. Fixes #1825 Fixes #1599 Related #1315
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.