Skip to content

Commit f94d74c

Browse files
committed
fixup
1 parent ff98687 commit f94d74c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/private/publish_deps.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
"""A simple macro to lock the requirements for twine
1616
"""
1717

18-
load("//python/uv/private:lock.bzl", "lock") # buildifier: disable=bzl-visibility
18+
load("//python/uv:uv_lock.bzl", "uv_lock") # buildifier: disable=bzl-visibility
1919

2020
def publish_deps(*, name, outs, **kwargs):
2121
"""Generate all of the requirements files for all platforms."""
2222
for out, platform in outs.items():
23-
lock(
23+
uv_lock(
2424
name = out.replace(".txt", ""),
2525
out = out,
2626
universal = platform == "",

0 commit comments

Comments
 (0)