Skip to content

Commit b0f025c

Browse files
committed
Add support for 13, 13t, 14
1 parent c2f94fb commit b0f025c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ permissions:
1818
jobs:
1919
build:
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
python-version: ["3.11", "3.12", "3.13", "3.13t", "3.14"]
2124

2225
steps:
2326
- uses: actions/checkout@v5
@@ -28,12 +31,12 @@ jobs:
2831
- name: Setup Python
2932
uses: actions-ext/python/setup@main
3033
with:
31-
version: '3.11'
34+
version: ${{ matrix.python-version }}
3235

3336
- name: Setup cibuildwheel
3437
uses: actions-ext/python/setup-cibuildwheel@main
3538
with:
36-
version: '3.11'
39+
version: ${{ matrix.python-version }}
3740

3841
- name: Setup cibuildwheel caching
3942
uses: actions-ext/python/setup-cibuildwheel-cache@main

setup/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ inputs:
1010
- '3.10'
1111
- '3.11'
1212
- '3.12'
13+
- '3.13'
14+
- '3.13t'
15+
- '3.14'
16+
- '3.14t'
1317
default: '3.11'
1418
uv:
1519
type: boolean
@@ -29,6 +33,7 @@ runs:
2933
uses: actions/setup-python@v5
3034
with:
3135
python-version: ${{ inputs.version }}
36+
allow-prereleases: true
3237
cache: "pip"
3338
cache-dependency-path: |
3439
"**/pyproject.toml"

0 commit comments

Comments
 (0)