Skip to content

Commit

Permalink
test under 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn committed Sep 14, 2024
1 parent ec71129 commit b518c54
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1

jobs:
linux:
runs-on: ubuntu-latest
Expand All @@ -26,7 +29,7 @@ jobs:
manylinux: auto
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -47,7 +50,7 @@ jobs:
target: aarch64-unknown-linux-gnu
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -68,7 +71,7 @@ jobs:
target: armv7
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
container: messense/manylinux_2_24-cross:armv7
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -89,7 +92,7 @@ jobs:
target: x86_64
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
manylinux: musllinux_1_1
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -110,7 +113,7 @@ jobs:
target: aarch64
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
manylinux: musllinux_1_1
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -130,7 +133,7 @@ jobs:
with:
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -149,7 +152,7 @@ jobs:
with:
command: build
sccache: true
args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12 3.13
args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12 3.13.0-rc.2
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1

jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit b518c54

Please sign in to comment.