We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5ed3e4 commit f7e238cCopy full SHA for f7e238c
python/private/pypi/BUILD.bazel
@@ -218,7 +218,8 @@ bzl_library(
218
srcs = ["pip_compile.bzl"],
219
deps = [
220
":deps_bzl",
221
- "//python:defs_bzl",
+ "//python:py_binary_bzl",
222
+ "//python:py_test_bzl",
223
],
224
)
225
python/private/pypi/pip_compile.bzl
@@ -19,7 +19,8 @@ NOTE @aignas 2024-06-23: We are using the implementation specific name here to
19
make it possible to have multiple tools inside the `pypi` directory
20
"""
21
22
-load("//python:defs.bzl", _py_binary = "py_binary", _py_test = "py_test")
+load("//python:py_binary.bzl", _py_binary = "py_binary")
23
+load("//python:py_test.bzl", _py_test = "py_test")
24
25
def pip_compile(
26
name,
0 commit comments