File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ permissions:
4040jobs :
4141 build_wheels :
4242 name : Build wheel ${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }}
43- if : false
4443 runs-on : ${{ matrix.buildplat[0] }}
4544 strategy :
4645 # Ensure that a wheel builder finishes even if another fails
@@ -258,7 +257,7 @@ jobs:
258257 name : Ensure commit is tag before upload to PyPi
259258
260259 if : github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'pypi'
261- needs : [build_sdist]
260+ needs : [build_wheels, build_sdist]
262261 runs-on : ubuntu-latest
263262 steps :
264263 - name : Checkout numpy
@@ -301,6 +300,13 @@ jobs:
301300 path : dist
302301 merge-multiple : true
303302
303+ - name : Remove wasm wheels
304+ run : |
305+ cd dist
306+ ls -al
307+ rm -r *wasm*
308+ ls -al
309+
304310 - name : Publish
305311 uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
306312 with :
You can’t perform that action at this time.
0 commit comments