Skip to content

Commit ca65399

Browse files
committed
REV: revert last two commits which disabled wheel builds to publish sdist
- Revert "REL: temporarily remove wasm handling, to publish only 2.3.3 sdist" This reverts commit 6abd3d4. - Revert "REL: release 2.3.3 sdist (wheels are already up)" This reverts commit 9b4a0d6.
1 parent 6abd3d4 commit ca65399

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ permissions:
4040
jobs:
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:

0 commit comments

Comments
 (0)