Skip to content
Merged
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 @@ -26,14 +26,14 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
architecture: 'x64'
- name: Build Linux wheel
uses: messense/maturin-action@v1
with:
target: x86_64
manylinux: auto
args: --release --out dist/ --interpreter python3.12
args: --release --out dist/ --interpreter python3.13
- name: Install built wheel
run: pip install canonicaljson-rs --no-index --find-links dist/ --force-reinstall
- name: Run tests
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,36 @@ jobs:
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
- os: windows
ls: dir
target: i686
manylinux: auto
python-architecture: x86
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
- os: macos
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9
- os: macos
target: aarch64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
# Build all manylinux targets on 2_24
# 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_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9
- os: ubuntu
target: aarch64
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9
- os: ubuntu
target: armv7
manylinux: 2_24
Expand All @@ -57,23 +57,23 @@ jobs:
target: ppc64le
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
- os: ubuntu
target: s390x
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13
# 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.7 3.8 3.9 3.10 3.11 3.12 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9
- os: ubuntu
target: aarch64
manylinux: musllinux_1_1
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9

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