1 parent ef8ba12 commit a87bac8Copy full SHA for a87bac8
1 file changed
.github/workflows/CI.yml
@@ -129,9 +129,18 @@ jobs:
129
target: x86
130
steps:
131
- 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.
135
- uses: actions/setup-python@v5
136
with:
- 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
144
architecture: ${{ matrix.platform.target }}
145
146
id: setup_freethreaded
0 commit comments