Skip to content

Commit b107a1a

Browse files
committed
👷 ci: add py314 workflow
1 parent 2b072d4 commit b107a1a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
- uses: actions/checkout@v4
108108
- uses: actions/setup-python@v5
109109
with:
110-
python-version: "3.13"
110+
python-version: "3.14"
111111
architecture: ${{ matrix.platform.target }}
112112
allow-prereleases: true
113113
- name: Build wheels

.github/workflows/e2e-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t"]
15+
python-version:
16+
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
1617
architecture: ["x64"]
1718
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} e2e test
1819
steps:
@@ -27,6 +28,7 @@ jobs:
2728
with:
2829
python-version: ${{ matrix.python-version }}
2930
architecture: ${{ matrix.architecture }}
31+
allow-prereleases: true
3032

3133
- name: Install tools
3234
run: |

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t"]
12+
python-version:
13+
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
1314
architecture: ["x64"]
1415
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} latest release test
1516
steps:
@@ -21,6 +22,7 @@ jobs:
2122
with:
2223
python-version: ${{ matrix.python-version }}
2324
architecture: ${{ matrix.architecture }}
25+
allow-prereleases: true
2426

2527
- name: Install tools
2628
run: |

.github/workflows/unit-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t"]
15+
python-version:
16+
["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
1617
architecture: ["x64"]
1718
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} unit test
1819
steps:
@@ -29,6 +30,7 @@ jobs:
2930
with:
3031
python-version: ${{ matrix.python-version }}
3132
architecture: ${{ matrix.architecture }}
33+
allow-prereleases: true
3234

3335
- name: Install just
3436
uses: extractions/setup-just@v3
@@ -45,6 +47,6 @@ jobs:
4547
4648
- name: Run benchmarks
4749
uses: CodSpeedHQ/action@v3
48-
if: ${{ matrix.python-version == '3.13' && github.event_name != 'merge_group' }}
50+
if: ${{ matrix.python-version == '3.14' && github.event_name != 'merge_group' }}
4951
with:
5052
run: uv run pytest --codspeed

0 commit comments

Comments
 (0)