Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ END_UNRELEASED_TEMPLATE
path separators; the bootstrap stub is now declared as a sibling of the
`.exe` launcher
([#3789](https://github.com/bazel-contrib/rules_python/issues/3789)).
* Fix the forwarding of `target_compatible_with` from `compile_pip_requirements`
towards the underlying `*.update` target.
([#3787](https://github.com/bazel-contrib/rules_python/pull/3787))


{#v0-0-0-added}
Expand Down
1 change: 1 addition & 0 deletions python/private/pypi/pip_compile.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ def pip_compile(
name = name + ".update",
env = env,
python_version = kwargs.get("python_version", None),
target_compatible_with = kwargs.get("target_compatible_with", []),
Comment thread
aignas marked this conversation as resolved.
**attrs
)

Expand Down