Skip to content

Commit 5c69ca2

Browse files
Quote glob env values in wheels.yml
Unquoted `*` in CIBW_BUILD and CIBW_SKIP caused YAML parse errors.
1 parent 0eb3887 commit 5c69ca2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ jobs:
5757
- name: Build wheels
5858
run: python -m cibuildwheel --output-dir wheelhouse
5959
env:
60-
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-*
61-
CIBW_SKIP: *-musllinux_* *-win32
60+
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
61+
CIBW_SKIP: "*-musllinux_* *-win32"
6262
CIBW_ARCHS_LINUX: auto64
6363
CIBW_ARCHS_WINDOWS: auto64
6464
CIBW_ARCHS_MACOS: auto64

0 commit comments

Comments
 (0)