File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ jobs:
177
177
CIBW_BEFORE_BUILD_WINDOWS : ' python -m pip install delvewheel'
178
178
179
179
- name : Set up Python for validation/upload (non-ARM64 Windows & other OS)
180
+ # micromamba is not available for ARM64 Windows
180
181
if : matrix.buildplat[1] != 'win_arm64'
181
182
uses : mamba-org/setup-micromamba@v2
182
183
with :
@@ -190,13 +191,15 @@ jobs:
190
191
cache-downloads : true
191
192
cache-environment : true
192
193
194
+ - name : Install wheel for win_arm64
195
+ # installing wheel here because micromamba step was skipped
196
+ if : matrix.buildplat[1] == 'win_arm64'
197
+ shell : bash -el {0}
198
+ run : python -m pip install wheel
199
+
193
200
- name : Validate wheel RECORD
194
201
shell : bash -el {0}
195
- run : |
196
- if [[ "${{ matrix.buildplat[1] }}" == "win_arm64" ]]; then
197
- python -m pip install wheel
198
- fi
199
- for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
202
+ run : for whl in $(ls wheelhouse); do wheel unpack wheelhouse/$whl -d /tmp; done
200
203
201
204
- uses : actions/upload-artifact@v4
202
205
with :
You can’t perform that action at this time.
0 commit comments