Skip to content

Commit 134e64d

Browse files
authored
chore: refer to rules_python toolchain type target instead of bazel_tools (bazel-contrib#1949)
The `@rules_python//python:toolchain_type` target is just an alias to the bazel tools one, so this should be a no-op change. It's less confusing to use a consistent label than to have a mix of them.
1 parent 8b0eaed commit 134e64d

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

examples/pip_parse/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ load("@rules_python//python/entry_points:py_console_script_binary.bzl", "py_cons
2424
#toolchain(
2525
# name = "my_py_toolchain",
2626
# toolchain = ":my_py_runtime_pair",
27-
# toolchain_type = "@bazel_tools//tools/python:toolchain_type",
27+
# toolchain_type = "@rules_python//python:toolchain_type",
2828
#)
2929
# End of toolchain setup.
3030

python/current_py_toolchain.bzl

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
"""Public entry point for current_py_toolchain rule."""
1616

17+
load("//python/private:toolchain_types.bzl", "TARGET_TOOLCHAIN_TYPE")
18+
1719
def _current_py_toolchain_impl(ctx):
1820
toolchain = ctx.toolchains[ctx.attr._toolchain]
1921

@@ -50,9 +52,9 @@ current_py_toolchain = rule(
5052
""",
5153
implementation = _current_py_toolchain_impl,
5254
attrs = {
53-
"_toolchain": attr.string(default = str(Label("@bazel_tools//tools/python:toolchain_type"))),
55+
"_toolchain": attr.string(default = str(TARGET_TOOLCHAIN_TYPE)),
5456
},
5557
toolchains = [
56-
str(Label("@bazel_tools//tools/python:toolchain_type")),
58+
str(TARGET_TOOLCHAIN_TYPE),
5759
],
5860
)

python/private/common/py_executable_bazel.bzl

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
load("@bazel_skylib//lib:dicts.bzl", "dicts")
1717
load("@bazel_skylib//lib:paths.bzl", "paths")
1818
load("//python/private:flags.bzl", "BootstrapImplFlag")
19+
load("//python/private:toolchain_types.bzl", "TARGET_TOOLCHAIN_TYPE")
1920
load(":attributes_bazel.bzl", "IMPORTS_ATTRS")
2021
load(
2122
":common.bzl",
@@ -78,7 +79,7 @@ the `srcs` of Python targets as required.
7879
# GraphlessQueryTest.testLabelsOperator relies on it to test for
7980
# query behavior of implicit dependencies.
8081
"_py_toolchain_type": attr.label(
81-
default = "@bazel_tools//tools/python:toolchain_type",
82+
default = TARGET_TOOLCHAIN_TYPE,
8283
),
8384
"_windows_launcher_maker": attr.label(
8485
default = "@bazel_tools//tools/launcher:launcher_maker",

tests/toolchains/defs.bzl

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
load("//python:versions.bzl", "PLATFORMS", "TOOL_VERSIONS")
1919
load("//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility
20+
load("//python/private:toolchain_types.bzl", "TARGET_TOOLCHAIN_TYPE") # buildifier: disable=bzl-visibility
2021

2122
_WINDOWS_RUNNER_TEMPLATE = """\
2223
@ECHO OFF
@@ -76,7 +77,7 @@ def _acceptance_test_impl(ctx):
7677
)
7778
files.append(run_acceptance_test_py)
7879

79-
toolchain = ctx.toolchains["@bazel_tools//tools/python:toolchain_type"]
80+
toolchain = ctx.toolchains[TARGET_TOOLCHAIN_TYPE]
8081
py3_runtime = toolchain.py3_runtime
8182
interpreter_path = py3_runtime.interpreter_path
8283
if not interpreter_path:
@@ -164,7 +165,7 @@ _acceptance_test = rule(
164165
),
165166
},
166167
test = True,
167-
toolchains = ["@bazel_tools//tools/python:toolchain_type"],
168+
toolchains = [TARGET_TOOLCHAIN_TYPE],
168169
)
169170

170171
def acceptance_test(python_version, **kwargs):

0 commit comments

Comments
 (0)