[micro-agent] Swap pip → uv in CI workflow(s)#1
Merged
Merged
Conversation
Swap the `python -m pip install` setup steps in `ci.yml` and `release.yml` for `uv pip install --system`, gated on `astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0`. Drops the `pip install -U pip` warmup; version pins for project deps (`.[dev]`, `build`) are unchanged. The `python -m build` and `pypa/gh-action-pypi-publish` steps are left intact. Cross-references the resilience pattern landed in evalops/maestro-internal#1492. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
PR SummaryLow Risk Overview Release packaging/publishing remains the same aside from installing Reviewed by Cursor Bugbot for commit 7104037. 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 ...setup steps in.github/workflows/ci.ymland.github/workflows/release.ymlwithuv pip install --system ..., gated on a SHA-pinnedastral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0.pip install -U pipwarmup. Version pins are unchanged (-e '.[dev]',build).python -m build+pypa/gh-action-pypi-publishleft untouched inrelease.yml.Why
Aligns this repo's CI with the resilience pattern landed in evalops/maestro-internal#1492 (uv resumes partial downloads + retries on connection drops, removing the pip read-timeout flake class).
Scope
.github/only. No project-side or Dockerfile changes.UV_HTTP_TIMEOUT=120wrapper from #1492 is not used here — kept in reserve if auv tool install <cli>==<ver>step is added later.Test plan
testjob installs deps viauv pip install --system -e '.[dev]'and runspytest -q).uv pip install --system build→python -m build→ publish).🤖 Generated with Claude Code