From f9f6de7ed5a68e146ff2d8822597c30e43e9f3db Mon Sep 17 00:00:00 2001 From: Morten larsen Date: Tue, 12 Jul 2022 10:08:33 +0200 Subject: [PATCH] exec_compatible_with -> target_compatible_with #704 --- python/private/toolchains_repo.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/private/toolchains_repo.bzl b/python/private/toolchains_repo.bzl index 14576bcf58..282859a685 100644 --- a/python/private/toolchains_repo.bzl +++ b/python/private/toolchains_repo.bzl @@ -48,7 +48,7 @@ def _toolchains_repo_impl(rctx): # for executing build actions. toolchain( name = "{platform}_toolchain", - exec_compatible_with = {compatible_with}, + target_compatible_with = {compatible_with}, toolchain = "@{user_repository_name}_{platform}//:python_runtimes", toolchain_type = "@bazel_tools//tools/python:toolchain_type", )