We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2378ff commit b03beb1Copy full SHA for b03beb1
python/private/python_register_multi_toolchains.bzl
@@ -15,7 +15,11 @@
15
"""This file contains repository rules and macros to support toolchain registration.
16
"""
17
18
-load("@pythons_hub//:versions.bzl", "MINOR_MAPPING")
+# NOTE @aignas 2024-10-07: we are not importing this from `@pythons_hub` because of this
19
+# leading to a backwards incompatible change - the `//python:repositories.bzl` is loading
20
+# from this file and it will cause a circular import loop and an error. If the users in
21
+# WORKSPACE world want to override the `minor_mapping`, they will have to pass an argument.
22
+load("//python:versions.bzl", "MINOR_MAPPING")
23
load(":python_register_toolchains.bzl", "python_register_toolchains")
24
load(":toolchains_repo.bzl", "multi_toolchain_aliases")
25
0 commit comments