Skip to content

Commit 197bce2

Browse files
committed
Bump Python version to 3.13
1 parent 5cad948 commit 197bce2

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

.github/workflows/Bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: 3.12
27+
python-version: 3.13
2828
- name: Restore uv cache
2929
uses: actions/cache@v4
3030
with:

.github/workflows/CI.yml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: "3.12"
26+
python-version: "3.13"
2727
- uses: messense/maturin-action@v1
2828
with:
2929
manylinux: auto
3030
command: build
3131
sccache: true
32-
args: --release -o dist -i 3.9 3.10 3.11 3.12
32+
args: --release -o dist -i 3.9 3.10 3.11 3.12 3.13
3333
- name: Upload wheels
3434
uses: actions/upload-artifact@v4
3535
with:
@@ -44,13 +44,13 @@ jobs:
4444
- name: Set up Python
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: "3.12"
47+
python-version: "3.13"
4848
- uses: messense/maturin-action@v1
4949
with:
5050
target: aarch64-unknown-linux-gnu
5151
command: build
5252
sccache: true
53-
args: --release -o dist -i 3.9 3.10 3.11 3.12
53+
args: --release -o dist -i 3.9 3.10 3.11 3.12 3.13
5454
- name: Upload wheels
5555
uses: actions/upload-artifact@v4
5656
with:
@@ -65,13 +65,13 @@ jobs:
6565
- name: Set up Python
6666
uses: actions/setup-python@v5
6767
with:
68-
python-version: "3.12"
68+
python-version: "3.13"
6969
- uses: messense/maturin-action@v1
7070
with:
7171
target: armv7
7272
command: build
7373
sccache: true
74-
args: --release -o dist -i 3.9 3.10 3.11 3.12
74+
args: --release -o dist -i 3.9 3.10 3.11 3.12 3.13
7575
container: messense/manylinux_2_24-cross:armv7
7676
- name: Upload wheels
7777
uses: actions/upload-artifact@v4
@@ -86,13 +86,13 @@ jobs:
8686
- name: Set up Python
8787
uses: actions/setup-python@v5
8888
with:
89-
python-version: "3.12"
89+
python-version: "3.13"
9090
- uses: messense/maturin-action@v1
9191
with:
9292
target: x86_64
9393
command: build
9494
sccache: true
95-
args: --release -o dist -i 3.9 3.10 3.11 3.12
95+
args: --release -o dist -i 3.9 3.10 3.11 3.12 3.13
9696
manylinux: musllinux_1_1
9797
- name: Upload wheels
9898
uses: actions/upload-artifact@v4
@@ -107,7 +107,7 @@ jobs:
107107
- name: Set up Python
108108
uses: actions/setup-python@v5
109109
with:
110-
python-version: "3.12"
110+
python-version: "3.13"
111111
- uses: messense/maturin-action@v1
112112
with:
113113
target: aarch64
@@ -128,12 +128,12 @@ jobs:
128128
- name: Set up Python
129129
uses: actions/setup-python@v5
130130
with:
131-
python-version: "3.12"
131+
python-version: "3.13"
132132
- uses: messense/maturin-action@v1
133133
with:
134134
command: build
135135
sccache: true
136-
args: --release -o dist -i 3.9 3.10 3.11 3.12
136+
args: --release -o dist -i 3.9 3.10 3.11 3.12 3.13
137137
- name: Upload wheels
138138
uses: actions/upload-artifact@v4
139139
with:
@@ -147,12 +147,12 @@ jobs:
147147
- name: Set up Python
148148
uses: actions/setup-python@v5
149149
with:
150-
python-version: "3.12"
150+
python-version: "3.13"
151151
- uses: messense/maturin-action@v1
152152
with:
153153
command: build
154154
sccache: true
155-
args: --release -o dist --target universal2-apple-darwin -i 3.9 3.10 3.11 3.12
155+
args: --release -o dist --target universal2-apple-darwin -i 3.9 3.10 3.11 3.12 3.13
156156
- name: Upload wheels
157157
uses: actions/upload-artifact@v4
158158
with:
@@ -163,6 +163,10 @@ jobs:
163163
runs-on: ubuntu-latest
164164
steps:
165165
- uses: actions/checkout@v4
166+
- name: Set up Python
167+
uses: actions/setup-python@v5
168+
with:
169+
python-version: "3.13"
166170
- name: Build sdist
167171
uses: PyO3/maturin-action@v1
168172
with:

.github/workflows/CodSpeed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.12
28+
python-version: 3.13
2929
- name: Restore uv cache
3030
uses: actions/cache@v4
3131
with:

.github/workflows/Test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
24+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2525
os: [ubuntu-latest, windows-latest, macos-latest]
2626
steps:
2727
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)