Skip to content

Commit 04dfc32

Browse files
committed
.
1 parent c267e77 commit 04dfc32

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/wheels.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,8 @@ jobs:
4242
CIBW_PLATFORM: 'windows'
4343
CIBW_ARCHS: 'ARM64'
4444
CIBW_BEFORE_BUILD_WINDOWS: |
45-
python -m pip install delvewheel wheel
45+
python -m pip install delvewheel
4646
bash scripts/cibw_before_build_windows.sh
47-
# CIBW_ENVIRONMENT_WINDOWS: |
48-
# CC=cl.exe
49-
# CXX=cl.exe
50-
# LD=link.exe
5147
5248
# - name: Set up Python for validation
5349
# uses: mamba-org/setup-micromamba@v2
@@ -61,7 +57,9 @@ jobs:
6157

6258
- name: Validate wheel RECORD
6359
shell: bash -el {0}
64-
run: for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
60+
run: |
61+
python -m pip install wheel
62+
for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
6563
6664
- uses: actions/upload-artifact@v4
6765
with:

0 commit comments

Comments
 (0)