Skip to content

Commit c935a5d

Browse files
committed
wip: consolidate py_executable_bazel -> py_executable
1 parent e3c9406 commit c935a5d

File tree

5 files changed

+747
-780
lines changed

5 files changed

+747
-780
lines changed

python/private/py_binary_rule.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
load("@bazel_skylib//lib:dicts.bzl", "dicts")
1717
load(":attributes.bzl", "AGNOSTIC_BINARY_ATTRS")
1818
load(
19-
":py_executable_bazel.bzl",
19+
":py_executable.bzl",
2020
"create_executable_rule",
21-
"py_executable_bazel_impl",
21+
"py_executable_impl",
2222
)
2323

2424
_PY_TEST_ATTRS = {
@@ -39,7 +39,7 @@ _PY_TEST_ATTRS = {
3939
}
4040

4141
def _py_binary_impl(ctx):
42-
return py_executable_bazel_impl(
42+
return py_executable_impl(
4343
ctx = ctx,
4444
is_test = False,
4545
inherited_environment = [],

0 commit comments

Comments
 (0)