From 41fccfd401d47f1d97c59b8af7a78cb8608e95ff Mon Sep 17 00:00:00 2001 From: michaelm-openai Date: Fri, 20 Mar 2026 00:04:08 -0700 Subject: [PATCH] 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"`. --- python/private/pypi/whl_library_targets.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/private/pypi/whl_library_targets.bzl b/python/private/pypi/whl_library_targets.bzl index 0fe2c52d9f..dc99aab532 100644 --- a/python/private/pypi/whl_library_targets.bzl +++ b/python/private/pypi/whl_library_targets.bzl @@ -39,7 +39,7 @@ _BAZEL_REPO_FILE_GLOBS = [ "BUILD.bazel", "REPO.bazel", "WORKSPACE", - "WORKSPACE", + "WORKSPACE.bzlmod", "WORKSPACE.bazel", ]