Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,28 @@ BEGIN_UNRELEASED_TEMPLATE
END_UNRELEASED_TEMPLATE
-->

{#v0-0-0}
## Unreleased

[0.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.0.0
Comment on lines +50 to +53
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The PR title mentions a backport into version 2.0.2. However, the added changelog section uses the placeholder version 0.0.0 and anchor {#v0-0-0} from the template. If the target version for this release is known to be 2.0.2, it would be clearer to use that version number explicitly in the anchor and link definition to avoid confusion and ensure correct linking once released.

Suggested change
{#v0-0-0}
## Unreleased
[0.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.0.0
{#v2-0-2}
## Unreleased
[2.0.2]: https://github.com/bazel-contrib/rules_python/releases/tag/2.0.2


{#v0-0-0-removed}
### Removed
* Nothing removed.

{#v0-0-0-changed}
### Changed
* Nothing changed.

{#v0-0-0-fixed}
### Fixed
* (system_python) Fix AttributeError exception on Debian 10 Buster
([#3774](https://github.com/bazel-contrib/rules_python/issues/3774)).

{#v0-0-0-added}
### Added
* Nothing added.

{#v2-0-1}
## [2.0.1] - 2026-05-08

Expand Down
1 change: 0 additions & 1 deletion python/private/python_bootstrap_template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,6 @@ def main():
print_verbose("VENV_REL_SITE_PACKAGES:", VENV_REL_SITE_PACKAGES)
print_verbose("WORKSPACE_NAME:", WORKSPACE_NAME )
print_verbose("bootstrap sys.executable:", sys.executable)
print_verbose("bootstrap sys._base_executable:", sys._base_executable)
print_verbose("bootstrap sys.version:", sys.version)

args = sys.argv[1:]
Expand Down