Skip to content

Commit eb2225c

Browse files
authored
chore: enable exec tools toolchain by default (bazel-contrib#2308)
This enables the exec tools toolchain by default. The flag to disable it is left available as an escape hatch.
1 parent d2bd432 commit eb2225c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ A brief description of the categories of changes:
3535
(or equivalent).
3636
* (toolchains) `py_runtime.implementation_name` now defaults to `cpython`
3737
(previously it defaulted to None).
38+
* (toolchains) The exec tools toolchain is enabled by default. It can be
39+
disabled by setting
40+
{obj}`--@rules_python//python/config_settings:exec_tools_toolchain=disabled`.
3841
* (deps) stardoc 0.6.2 added as dependency.
3942

4043
### Fixed

python/config_settings/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ string_flag(
4242

4343
string_flag(
4444
name = "exec_tools_toolchain",
45-
build_setting_default = ExecToolsToolchainFlag.DISABLED,
45+
build_setting_default = ExecToolsToolchainFlag.ENABLED,
4646
values = sorted(ExecToolsToolchainFlag.__members__.values()),
4747
# NOTE: Only public because it is used in py_toolchain_suite from toolchain
4848
# repositories

0 commit comments

Comments
 (0)