Skip to content

Commit d5b9c4b

Browse files
committed
🔥 chore: drop python 3.13t support, keep 3.14t support only
1 parent 4ddbe8b commit d5b9c4b

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

.github/workflows/biliass-build-and-release.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: PyO3/maturin-action@v1
5252
with:
5353
target: ${{ matrix.platform.target }}
54-
args: --release --out dist --interpreter '3.14 3.13t 3.14t'
54+
args: --release --out dist --interpreter '3.14 3.14t'
5555
sccache: "true"
5656
manylinux: auto
5757
working-directory: packages/biliass
@@ -84,7 +84,7 @@ jobs:
8484
uses: PyO3/maturin-action@v1
8585
with:
8686
target: ${{ matrix.platform.target }}
87-
args: --release --out dist --interpreter '3.14 3.13t 3.14t'
87+
args: --release --out dist --interpreter '3.14 3.14t'
8888
sccache: "true"
8989
manylinux: musllinux_1_2
9090
working-directory: packages/biliass
@@ -136,14 +136,11 @@ jobs:
136136
target: x64
137137
- runner: windows-latest
138138
target: x86
139-
python-versions:
140-
- 3.13t
141-
- 3.14t
142139
steps:
143140
- uses: actions/checkout@v4
144141
- uses: actions/setup-python@v5
145142
with:
146-
python-version: ${{ matrix.python-versions }}
143+
python-version: "3.14t"
147144
architecture: ${{ matrix.platform.target }}
148145
allow-prereleases: true
149146
- name: Build wheels
@@ -178,7 +175,7 @@ jobs:
178175
uses: PyO3/maturin-action@v1
179176
with:
180177
target: ${{ matrix.platform.target }}
181-
args: --release --out dist --interpreter '3.14 3.13t 3.14t'
178+
args: --release --out dist --interpreter '3.14 3.14t'
182179
sccache: "true"
183180
working-directory: packages/biliass
184181
- name: Upload wheels

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version:
16-
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
1716
architecture: ["x64"]
1817
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} e2e test
1918
steps:

.github/workflows/latest-release-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version:
13-
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
1413
architecture: ["x64"]
1514
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} latest release test
1615
steps:

.github/workflows/unit-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version:
16-
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
1716
architecture: ["x64"]
1817
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} unit test
1918
steps:

0 commit comments

Comments
 (0)