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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ END_UNRELEASED_TEMPLATE
* (venvs) {obj}`--vens_site_packages=yes` no longer errors when packages with
overlapping files or directories are used together.
([#3204](https://github.com/bazel-contrib/rules_python/issues/3204)).
* (uv) {obj}`//python/uv:lock.bzl%lock` now works with a local platform
runtime.

{#v0-0-0-added}
### Added
Expand Down
2 changes: 1 addition & 1 deletion python/uv/private/lock.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def _lock_impl(ctx):
exec_tools = ctx.toolchains[EXEC_TOOLS_TOOLCHAIN_TYPE].exec_tools
runtime = exec_tools.exec_interpreter[platform_common.ToolchainInfo].py3_runtime
python = runtime.interpreter or runtime.interpreter_path
python_files = runtime.files
python_files = runtime.files or depset()
args.add("--python", python)
args.add_all(srcs)

Expand Down