Skip to content
Merged
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
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ jobs:
target: aarch64
interpreter: 3.11 3.12 3.13 3.14

- os: macos
target: x86_64
interpreter: pypy3.11
# macos x86_64 has no entry: base combo cross-compiles from arm64 with the default interpreter list (non-PGO).
- os: macos
target: aarch64
# actions/setup-python@v6 does not support 3.8 and 3.9 on arm64
Expand Down Expand Up @@ -111,7 +109,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ]
os: [ ubuntu-latest, windows-latest, macos-14 ]
interpreter: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
exclude:
# actions/setup-python@v6 does not support 3.8 and 3.9 on arm64
Expand All @@ -131,7 +129,7 @@ jobs:
- name: Checkout repository.
uses: actions/checkout@v6

- uses: actions/setup-python@v6 # required for macos-13 with Python 3.8-3.10... otherwise UV uses PyPy...
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.interpreter }}

Expand Down