Skip to content

Commit 68a2d2a

Browse files
committed
wip
1 parent 00650a1 commit 68a2d2a

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

docs/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ lock(
170170
srcs = ["pyproject.toml"],
171171
out = "requirements.txt",
172172
args = [
173+
"--emit-index-url",
173174
"--universal",
174175
"--upgrade",
175176
],

docs/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# This file was autogenerated by uv via the following command:
22
# bazel run //docs:requirements.update.update
3+
--index-url https://pypi.org/simple
4+
35
absl-py==2.1.0 \
46
--hash=sha256:526a04eadab8b4ee719ce68f204172ead1027549089702d99b9059f129ff1308 \
57
--hash=sha256:7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff

python/uv/private/lock.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ _lock = rule(
137137
def _impl3(ctx):
138138
info = ctx.attr.lock[_LockInfo]
139139
uv = info.uv
140+
srcs = info.srcs
140141
py_runtime = info.py
141142

142143
args = [
@@ -145,7 +146,7 @@ def _impl3(ctx):
145146
"compile",
146147
] + info.args + [
147148
src.short_path
148-
for src in info.srcs
149+
for src in srcs
149150
] + [
150151
"--python",
151152
py_runtime.interpreter.short_path,

0 commit comments

Comments
 (0)