Skip to content

Commit ace4a52

Browse files
haasonsaasclaude
andcommitted
[mocktopus] Swap pip → uv in CI workflow(s)
Replace `python -m pip install --upgrade pip` + `pip install -e .[test]` with `uv pip install --system -e '.[test]'` in `.github/workflows/ci.yml`. Adds astral-sh/setup-uv@v8.1.0 (SHA-pinned). Drops the bare pip self-upgrade per the migration recipe. Cross-ref: evalops/maestro-internal#1492 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent c6f8090 commit ace4a52

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ jobs:
1212
- uses: actions/setup-python@v5
1313
with:
1414
python-version: '3.11'
15+
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
1516
- name: Install
16-
run: |
17-
python -m pip install --upgrade pip
18-
pip install -e .[test]
17+
run: uv pip install --system -e '.[test]'
1918
- name: Test
2019
run: pytest -q

0 commit comments

Comments
 (0)