From 9a64b6a8b3ccd503ffbcc0661dd4ff94341f624c Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 3 Nov 2022 14:45:54 -0700 Subject: [PATCH] Enable Starlark `py_runtime`. I manually built a Bazel and ran tests in rules_python with it; looks to be OK. Work towards #15897 PiperOrigin-RevId: 485978566 Change-Id: I79c209b095492c39b1fff97091425fc7af486b12 --- src/main/starlark/builtins_bzl/common/exports.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/starlark/builtins_bzl/common/exports.bzl b/src/main/starlark/builtins_bzl/common/exports.bzl index 779e4d61dba294..cee55c3ef0df64 100755 --- a/src/main/starlark/builtins_bzl/common/exports.bzl +++ b/src/main/starlark/builtins_bzl/common/exports.bzl @@ -61,7 +61,7 @@ exported_rules = { "+cc_test": cc_test, "+cc_library": cc_library, "proto_lang_toolchain": proto_lang_toolchain, - "-py_runtime": py_runtime, + "+py_runtime": py_runtime, } # A list of Starlark functions callable from native rules implementation.