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 @@ -93,6 +93,8 @@ END_UNRELEASED_TEMPLATE
([#3099](https://github.com/bazel-contrib/rules_python/issues/3099)).
* (pypi) Expose pypi packages only common to all Python versions in `all_requirements`
([#2921](https://github.com/bazel-contrib/rules_python/issues/2921)).
* (repl) Normalize the path for the `REPL` stub to make it possible to use the
default stub template from outside `rules_python` ({gh-issue}`3101`).

{#v0-0-0-added}
### Added
Expand Down
4 changes: 3 additions & 1 deletion python/private/repl_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

from python.runfiles import runfiles

STUB_PATH = "%stub_path%"
# runfiles.py will reject paths which aren't normalized, which can happen when the REPL rules are
# used from a remote module.
STUB_PATH = os.path.normpath("%stub_path%")


def start_repl():
Expand Down