Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# diff-cover needs origin/main; hatch-vcs needs full history + tags for the version
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with: { python-version: '${{ matrix.python }}' }
- run: pip install uv
- run: uv sync --all-extras
Expand All @@ -43,7 +43,7 @@ jobs:
# checkout would build a bogus low version (e.g. 0.1.dev1).
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with: { python-version: '3.12' }
- run: pip install build
- run: python -m build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ jobs:
ref: refs/tags/${{ needs.resolve.outputs.tag }}
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with: { python-version: '3.12' }
- run: pip install build twine trove-classifiers check-wheel-contents pytest
- run: python -m build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
ref: refs/tags/${{ github.event.inputs.tag }}
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with: { python-version: '3.12' }
- run: pip install build twine trove-classifiers check-wheel-contents pytest
- run: python -m build
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
needs: [build, test-pypi]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with: { python-version: '3.12' }
- name: Install just-published version from TestPyPI (tolerate index propagation lag)
env:
Expand Down