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
6 changes: 4 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,18 @@ jobs:
strategy:
matrix:
include:
# Native builds - maturin auto-discovers Python interpreters
# Linux builds - must specify interpreters explicitly (manylinux has 3.8+ but we support 3.9+)
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
interpreter: -i python3.9 -i python3.10 -i python3.11 -i python3.12 -i python3.13
# macOS/Windows - uses setup-python (line 85-94) which only installs 3.9-3.13
- os: macos-latest
target: x86_64-apple-darwin
- os: macos-latest
target: aarch64-apple-darwin
- os: windows-latest
target: x86_64-pc-windows-msvc
# Cross-compilation - must specify Python versions explicitly
# aarch64 Linux cross-compilation - must specify Python versions explicitly
# (cross containers don't have discoverable Python interpreters)
# Uses manylinux_2_28 for modern GCC (fixes ring crate aarch64 build)
- os: ubuntu-latest
Expand Down
Loading