Skip to content

Commit af4a071

Browse files
committed
.
1 parent da3023c commit af4a071

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ jobs:
6969

7070
- name: Validate wheel RECORD
7171
shell: bash -el {0}
72-
run: for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
72+
run: |
73+
python -m pip install wheel
74+
for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
7375
7476
# Artifact upload is removed as per requirements
7577
# - uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)