Skip to content

Commit

Permalink
Add 3.13 support and build wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
violuke authored Oct 14, 2024
1 parent 0393f1f commit d9e2783
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12', 'pypy3.10']
python-version: ['3.8', '3.12', '3.13', 'pypy3.10']
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -56,11 +56,11 @@ jobs:
matrix:
platform:
- target: x64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
- target: aarch64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
- target: armv7
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -85,13 +85,13 @@ jobs:
platform:
- target: x86_64-unknown-linux-musl
arch: x86_64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
- target: i686-unknown-linux-musl
arch: x86
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
- target: aarch64-unknown-linux-musl
arch: aarch64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9 pypy3.10
# all values: [x86_64, x86, aarch64, armhf, armv7, ppc64le, riscv64, s390x]
# { target: "armv7-unknown-linux-musleabihf", image_tag: "armv7" },
# { target: "powerpc64le-unknown-linux-musl", image_tag: "ppc64le" },
Expand Down Expand Up @@ -121,9 +121,9 @@ jobs:
matrix:
platform:
- target: x64
interpreter: 3.8 3.9 3.10 3.11 3.12
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
- target: x86
interpreter: 3.8 3.9 3.10 3.11 3.12
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -147,9 +147,9 @@ jobs:
matrix:
platform:
- target: x64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9
- target: aarch64
interpreter: 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13 pypy3.8 pypy3.9
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit d9e2783

Please sign in to comment.