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 @@ -86,6 +86,9 @@ END_UNRELEASED_TEMPLATE

{#v0-0-0-fixed}
### Fixed
* (toolchains) `local_runtime_repo` now respects changes to the `DEVELOPER_DIR` and `XCODE_VERSION`
repo env vars, fixing stale cache issues on macOS with system (i.e. Xcode-supplied) Python
([#3123](https://github.com/bazel-contrib/rules_python/issues/3123)).
* (pypi) Fixes an issue where builds using a `bazel vendor` vendor directory
would fail if the constraints file contained environment markers. Fixes
[#2996](https://github.com/bazel-contrib/rules_python/issues/2996).
Expand Down
2 changes: 1 addition & 1 deletion python/private/local_runtime_repo.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ How to handle errors when trying to automatically determine settings.
),
"_rule_name": attr.string(default = "local_runtime_repo"),
},
environ = ["PATH", REPO_DEBUG_ENV_VAR],
environ = ["PATH", REPO_DEBUG_ENV_VAR, "DEVELOPER_DIR", "XCODE_VERSION"],
)

def _expand_incompatible_template():
Expand Down