Skip to content

Commit 4793c48

Browse files
authored
BLD don't allow wasm wheels to be published (#9)
* BLD don't allow wasm wheels to be published
1 parent 3f3fa0d commit 4793c48

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ jobs:
7979
- buildplat: [ macos13, macosx_x86_64, openblas ]
8080
python: "cp314t"
8181
include:
82-
- buildplat: [ ubuntu-22.04, pyodide_wasm32, "" ]
83-
python: "cp312"
8482
- buildplat: [ ubuntu-22.04, pyodide_wasm32, "" ]
8583
python: "cp313"
8684
env:
@@ -238,6 +236,13 @@ jobs:
238236
with:
239237
path: dist
240238

239+
- name: Remove wasm wheels
240+
run: |
241+
cd dist
242+
ls -al
243+
rm -r *wasm*
244+
ls -al
245+
241246
- name: Publish
242247
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
243248
with:
@@ -292,6 +297,13 @@ jobs:
292297
with:
293298
path: dist
294299

300+
- name: Remove wasm wheels
301+
run: |
302+
cd dist
303+
ls -al
304+
rm -r *wasm*
305+
ls -al
306+
295307
- name: Publish
296308
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
297309
with:

0 commit comments

Comments
 (0)