[cd-dspy] Swap pip → uv in CI workflow#6
Merged
Merged
Conversation
Replace `python -m pip install --upgrade pip && python -m pip install -e .[dev]` in both jobs (`test`, `coq-smoke`) with `astral-sh/setup-uv@v8.1.0` (pinned by SHA) followed by `uv pip install --system -e '.[dev]'`. No version pin changes. Hardens CI against the PyPI partial-read timeouts that took down post-merge evals on `main` in evalops/maestro-internal#1492. `uv` resumes partial downloads and retries on connection drops by default. No CLI tool installs in this workflow, so no `uv tool install` retry wrapper is needed yet. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
PR SummaryLow Risk Overview The workflow adds an Reviewed by Cursor Bugbot for commit 1b97570. Bugbot is set up for automated code reviews on this repo. Configure here. |
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.
Summary
python -m pip install --upgrade pip && python -m pip install -e .[dev]in bothtestandcoq-smokejobs withastral-sh/setup-uv@v8.1.0(pinned by full SHA) followed byuv pip install --system -e '.[dev]'.--user.Why
Hardens CI against the PyPI partial-read timeouts that took down post-merge evals on
maininevalops/maestro-internal#1492.uvresumes partial downloads and retries on connection drops by default, removing a class of transient failures thatpipcannot recover from. This workflow has no CLI tool installs, so nouv tool installretry wrapper is needed — that pattern lands when CLI tools show up.Files changed
.github/workflows/ci.ymlTest plan
3.10,3.11,3.12) oftestpassInstall dependencies.coq-smokepassesInstall Python dependenciesand the smoke test still runs.🤖 Generated with Claude Code