Skip to content

Commit 0b158a1

Browse files
committed
chore: Fix Python 3.14 for build
1 parent 837210f commit 0b158a1

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/CI.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
target: x86_64
2828
- runner: ubuntu-24.04
2929
target: aarch64
30-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy-25.0"]
30+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy3.12"]
3131
steps:
3232
- uses: actions/checkout@v6
3333
with:
3434
persist-credentials: false
3535
- uses: actions/setup-python@v6
3636
with:
37-
python-version: ${{ matrix.python-version }}
37+
python-version: "3.14"
3838
- uses: Swatinem/rust-cache@v2
3939
- name: Build wheels
4040
uses: PyO3/maturin-action@v1
@@ -58,14 +58,14 @@ jobs:
5858
target: x86_64
5959
- runner: ubuntu-24.04
6060
target: aarch64
61-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy-25.0"]
61+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy3.12"]
6262
steps:
6363
- uses: actions/checkout@v6
6464
with:
6565
persist-credentials: false
6666
- uses: actions/setup-python@v6
6767
with:
68-
python-version: ${{ matrix.python-version }}
68+
python-version: "3.14"
6969
- uses: Swatinem/rust-cache@v2
7070
- name: Build wheels
7171
uses: PyO3/maturin-action@v1
@@ -94,7 +94,7 @@ jobs:
9494
persist-credentials: false
9595
- uses: actions/setup-python@v6
9696
with:
97-
python-version: ${{ matrix.python-version }}
97+
python-version: "3.14"
9898
architecture: ${{ matrix.platform.target }}
9999
- uses: Swatinem/rust-cache@v2
100100
- name: Build wheels
@@ -116,14 +116,14 @@ jobs:
116116
platform:
117117
- runner: macos-15
118118
target: aarch64
119-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy-25.0"]
119+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t", "pypy3.11", "graalpy3.12"]
120120
steps:
121121
- uses: actions/checkout@v6
122122
with:
123123
persist-credentials: false
124124
- uses: actions/setup-python@v6
125125
with:
126-
python-version: ${{ matrix.python-version }}
126+
python-version: "3.14"
127127
- uses: Swatinem/rust-cache@v2
128128
- name: Build wheels
129129
uses: PyO3/maturin-action@v1

0 commit comments

Comments
 (0)