Skip to content

Commit 41fccfd

Browse files
fix(pypi) Correct likely _BAZEL_REPO_FILE_GLOBS typo (#3670)
Based on https://github.com/bazel-contrib/rules_python/blob/f5f35d6e9a2f01c754e59c6ff97bfdcdf81abc35/python/private/toolchains_repo.bzl#L340-L345 I suspect the duplicate `"WORKSPACE"` was meant to be `"WORKSPACE.bzlmod"`. Potentially this could be factored out and shared, or `toolchains_repo.bzl` be updated to also include `"BUILD"`.
1 parent f5f35d6 commit 41fccfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/pypi/whl_library_targets.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ _BAZEL_REPO_FILE_GLOBS = [
3939
"BUILD.bazel",
4040
"REPO.bazel",
4141
"WORKSPACE",
42-
"WORKSPACE",
42+
"WORKSPACE.bzlmod",
4343
"WORKSPACE.bazel",
4444
]
4545

0 commit comments

Comments
 (0)