Skip to content

Commit 9b2917a

Browse files
mailto-jonasaignas
authored andcommitted
fix: Don't fail in override from a non-root module (bazel-contrib#2566)
This patch enable calls to pypi override from a non-root module without failing. The call will instead be silently ignored. Fixes bazel-contrib#2550 --------- Co-authored-by: Ignas Anikevicius <[email protected]>
1 parent f219112 commit 9b2917a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ Unreleased changes template.
5252

5353
{#v0-0-0-changed}
5454
### Changed
55-
* Nothing changed.
55+
* (pypi) {obj}`pip.override` will now be ignored instead of raising an error,
56+
fixes [#2550](https://github.com/bazelbuild/rules_python/issues/2550).
5657

5758
{#v0-0-0-fixed}
5859
### Fixed

python/private/pypi/extension.bzl

+3-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ You cannot use both the additive_build_content and additive_build_content_file a
387387
for module in module_ctx.modules:
388388
for attr in module.tags.override:
389389
if not module.is_root:
390-
fail("overrides are only supported in root modules")
390+
# Overrides are only supported in root modules. Silently
391+
# ignore the override:
392+
continue
391393

392394
if not attr.file.endswith(".whl"):
393395
fail("Only whl overrides are supported at this time")

0 commit comments

Comments
 (0)