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
22 changes: 11 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,62 +18,62 @@ jobs:
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: windows
ls: dir
target: i686
manylinux: auto
python-architecture: x86
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: macos
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
- os: macos
target: aarch64
manylinux: auto
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
# Build all manylinux targets on 2_28
# https://github.com/pypa/manylinux#readme
# https://github.com/PyO3/maturin-action/blob/135c746/src/index.ts#L33
- os: ubuntu
target: x86_64
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
- os: ubuntu
target: aarch64
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
- os: ubuntu
target: armv7
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: ubuntu
target: ppc64le
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
- os: ubuntu
target: s390x
manylinux: 2_28
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14
# musllinux - https://musl.libc.org/about.html
- os: ubuntu
target: x86_64
manylinux: musllinux_1_1 # /!\ value used in steps conditions below.
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9
- os: ubuntu
target: aarch64
manylinux: musllinux_1_1
python-architecture: x64
interpreter: 3.9 3.10 3.11 3.12 3.13 pypy3.9
interpreter: 3.9 3.10 3.11 3.12 3.13 3.14 pypy3.9

runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
Loading