Skip to content

Commit a87bac8

Browse files
committed
Build windows wheels for 3.13 and 3,14
1 parent ef8ba12 commit a87bac8

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/CI.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,18 @@ jobs:
129129
target: x86
130130
steps:
131131
- uses: actions/checkout@v4
132+
# Install each CPython used by maturin -i (Windows has no manylinux shim with all Pythons).
133+
# Without 3.13/3.14 here, only the single 3.x from '3.x' plus 3.13t/3.14t were available, so
134+
# cp313/cp314 wheels were missing while cp313t/cp314t were built.
132135
- uses: actions/setup-python@v5
133136
with:
134-
python-version: '3.x'
137+
python-version: |
138+
3.9
139+
3.10
140+
3.11
141+
3.12
142+
3.13
143+
3.14
135144
architecture: ${{ matrix.platform.target }}
136145
- uses: actions/setup-python@v5
137146
id: setup_freethreaded

0 commit comments

Comments
 (0)