Skip to content

Commit 29fa097

Browse files
committed
Build: Fix left-over variable references in workflow.
1 parent b1da49e commit 29fa097

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
name: wheel-${{ matrix.only }}
161161

162162
build_limited_api_wheels:
163-
name: Build ${{ matrix.os }} Stable ABI ${{ matrix.lapiversion }} wheels
163+
name: Build ${{ matrix.target }} Stable ABI ${{ matrix.lapiversion }} wheels
164164
if: >-
165165
github.event_name == 'push' ||
166166
github.event_name == 'release' ||
@@ -191,14 +191,14 @@ jobs:
191191

192192
exclude:
193193
# Py3.9-abi3 on Windows lacks "PyThread" API.
194-
- os: 'windows-latest'
194+
- target: 'win32'
195195
lapiversion: '3.9'
196-
- os: 'windows-11-arm'
196+
- target: 'win_arm64'
197197
lapiversion: '3.9'
198198
include:
199-
- os: 'windows-latest'
199+
- target: 'win32'
200200
lapiversion: '3.10'
201-
- os: 'windows-11-arm'
201+
- target: 'win_arm64'
202202
lapiversion: '3.10'
203203

204204
runs-on: ${{

0 commit comments

Comments
 (0)