Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build wheel for python 3.12 and drop unsupported Pypy 3.7 and Pypy 3.9 #85

Merged
merged 1 commit into from
Feb 1, 2024
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 @@ -22,14 +22,14 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
architecture: 'x64'
- name: Build wheels
uses: messense/maturin-action@v1
with:
target: x86_64
manylinux: auto
args: --release --out dist/ --interpreter python3.11
args: --release --out dist/ --interpreter python3.12
- name: Install built wheel
run: |
pip install canonicaljson-rs --no-index --find-links dist/ --force-reinstall
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,67 +22,67 @@ jobs:
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
- os: windows
ls: dir
target: i686
manylinux: auto
python-architecture: x86
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
- os: macos
target: x86_64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
- os: macos
target: aarch64
manylinux: auto
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
# 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 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
- os: ubuntu
target: aarch64
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
- os: ubuntu
target: i686
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
- os: ubuntu
target: armv7
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
- os: ubuntu
target: ppc64le
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
- os: ubuntu
target: s390x
manylinux: 2_24
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12
# 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 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
- os: ubuntu
target: aarch64
manylinux: musllinux_1_1
python-architecture: x64
interpreter: 3.7 3.8 3.9 3.10 3.11 pypy3.7 pypy3.8 pypy3.9
interpreter: 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10

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