Skip to content

Commit c8b7323

Browse files
committed
Don't upload pyodide wheels to PyPI
1 parent 57f4aec commit c8b7323

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/buildwheel.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,11 @@ jobs:
428428
merge-multiple: true
429429

430430
- name: Copy the PyPI files into dist
431-
run: mkdir dist && cp wheelhouse/*.whl wheelhouse/*.tar.gz dist
431+
# pyodide wheels cannot be uploaded to PyPI
432+
run: |
433+
mkdir dist
434+
rm wheelhouse/*pyodide*.whl
435+
cp wheelhouse/*.whl wheelhouse/*.tar.gz dist
432436
433437
- name: Publish package on PyPI
434438
# It is recommended to pin a commit hash here for security but it

0 commit comments

Comments
 (0)