Skip to content

Commit 49d0c53

Browse files
authored
Merge pull request #3 from actions-ext/tkp/13
Add support for 13, 13t, 14, 14t
2 parents 9da94d2 + a01babc commit 49d0c53

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
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", "3.14t"]
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-cibuildwheel/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ inputs:
1010
- '3.10'
1111
- '3.11'
1212
- '3.12'
13-
default: '3.9'
13+
- '3.13'
14+
- '3.13t'
15+
- '3.14'
16+
default: '3.11'
1417

1518
runs:
1619
using: 'composite'

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
@@ -22,6 +26,7 @@ runs:
2226
- name: Set up Python ${{ inputs.version }}
2327
uses: actions/setup-python@v5
2428
with:
29+
allow-prereleases: true
2530
python-version: ${{ inputs.version }}
2631
allow-prereleases: true
2732
if: ${{ inputs.uv == 'true' }}

0 commit comments

Comments
 (0)