Skip to content

Commit d176d6f

Browse files
committed
Build: Include Py3.10 as Windows abi3 target to avoid depending on Py3.12+ entirely.
1 parent 6e49351 commit d176d6f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,11 @@ jobs:
188188
lapiversion: '3.9'
189189
- os: 'windows-11-arm'
190190
lapiversion: '3.9'
191+
include:
192+
- os: 'windows-latest'
193+
lapiversion: '3.10'
194+
- os: 'windows-11-arm'
195+
lapiversion: '3.10'
191196

192197
steps:
193198
- name: Check out project
@@ -238,7 +243,8 @@ jobs:
238243
matrix.os == 'windows-11-arm' && '*win_arm64' ||
239244
matrix.os == 'macos-latest' && '*macosx_x86_64' ||
240245
'' }}
241-
CIBW_SKIP: "cp31*t-* cp38-* ${{ matrix.lapiversion != '3.9' && 'cp39-* cp310-* cp311-*' || '' }}"
246+
CIBW_SKIP: "cp31*t-*"
247+
CIBW_PROJECT_REQUIRES_PYTHON: ">=${{ matrix.lapiversion }}"
242248
LUPA_LIMITED_API: "${{ matrix.lapiversion }}"
243249

244250
- name: Check wheel

0 commit comments

Comments
 (0)