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 77672e6 commit e66834cCopy full SHA for e66834c
python/uv/private/uv.bzl
@@ -243,9 +243,11 @@ def process_modules(
243
specific_config = versions.setdefault(
244
last_version,
245
{
246
- "base_url": defaults.get("base_url", ""),
+ "base_url": defaults["base_url"],
247
"manifest_filename": defaults["manifest_filename"],
248
- "platforms": dict(defaults["platforms"]), # copy
+ # shallow copy is enough as the values are structs and will
249
+ # be replaced on modification
250
+ "platforms": dict(defaults["platforms"]),
251
},
252
)
253
0 commit comments