We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c267e77 commit 04dfc32Copy full SHA for 04dfc32
.github/workflows/wheels.yml
@@ -42,12 +42,8 @@ jobs:
42
CIBW_PLATFORM: 'windows'
43
CIBW_ARCHS: 'ARM64'
44
CIBW_BEFORE_BUILD_WINDOWS: |
45
- python -m pip install delvewheel wheel
+ python -m pip install delvewheel
46
bash scripts/cibw_before_build_windows.sh
47
- # CIBW_ENVIRONMENT_WINDOWS: |
48
- # CC=cl.exe
49
- # CXX=cl.exe
50
- # LD=link.exe
51
52
# - name: Set up Python for validation
53
# uses: mamba-org/setup-micromamba@v2
@@ -61,7 +57,9 @@ jobs:
61
57
62
58
- name: Validate wheel RECORD
63
59
shell: bash -el {0}
64
- run: for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
60
+ run: |
+ python -m pip install wheel
+ for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
65
66
- uses: actions/upload-artifact@v4
67
with:
0 commit comments