fix(benchmarks): regenerate Harbor uv.lock against public PyPI#2305
Open
Bartok9 wants to merge 1 commit into
Open
fix(benchmarks): regenerate Harbor uv.lock against public PyPI#2305Bartok9 wants to merge 1 commit into
Bartok9 wants to merge 1 commit into
Conversation
Both Harbor benchmark lockfiles pinned package sources and artifact URLs to Block's internal Artifactory mirror (global.block-artifacts.com) — 1,589 references in harbor-buzz-orchestra/uv.lock and 1,645 in testbed/uv.lock — captured from a developer-global uv config at generation time. Neither pyproject.toml configures that index, so public clones can't resolve these lockfiles (block#2226). Regenerated both against public PyPI (UV_INDEX_URL=https://pypi.org/simple); all sources now resolve to pypi.org / files.pythonhosted.org with zero block-artifacts references. Dependency versions are unchanged — only the resolver index/URLs. `uv lock --check` passes for both. Refs block#2226 Signed-off-by: Bartok9 <danielrpike9@gmail.com>
Bartok9
force-pushed
the
bartok9/harbor-uvlock-public-pypi
branch
from
July 22, 2026 14:33
705e96a to
8625cc2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refs #2226
Problem
Both Harbor benchmark lockfiles pinned package sources and artifact URLs to Block's internal Artifactory mirror (
global.block-artifacts.com) instead of public PyPI:benchmarks/harbor-buzz-orchestra/uv.lock— 1,589 refsbenchmarks/harbor-buzz-orchestra/testbed/uv.lock— 1,645 refsNeither adjacent
pyproject.tomlconfigures that index, so the lockfiles captured a developer-globaluvconfig at generation time. Public clones can't resolve these lockfiles against a private, auth-gated mirror.Fix
Regenerated both lockfiles against public PyPI:
UV_INDEX_URL=https://pypi.org/simple uv lock # in harbor-buzz-orchestra/ and testbed/block-artifactsreferences remain; all sources now resolve topypi.org/files.pythonhosted.org.How to test
Both pass
uv lock --check(the repo's Check uv.lock CI gate) against public PyPI.Signed-off-by DCO.