You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Ignore any attempts to configure the `uv` toolchain from non-root modules
67
+
ifnotmod.is_rootandnotmod.name=="rules_python":
68
+
# Only rules_python and the root module can configure this.
69
+
#
70
+
# Ignore any attempts to configure the `uv` toolchain elsewhere
68
71
#
69
72
# Only the root module may configure the uv toolchain.
70
73
# This prevents conflicting registrations with any other modules.
71
74
#
72
75
# NOTE: We may wish to enforce a policy where toolchain configuration is only allowed in the root module, or in rules_python. See https://github.com/bazelbuild/bazel/discussions/22024
73
76
continue
74
77
78
+
# Note, that the first registration will always win, givin priority to
0 commit comments