We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57f4aec commit c8b7323Copy full SHA for c8b7323
1 file changed
.github/workflows/buildwheel.yml
@@ -428,7 +428,11 @@ jobs:
428
merge-multiple: true
429
430
- name: Copy the PyPI files into dist
431
- run: mkdir dist && cp wheelhouse/*.whl wheelhouse/*.tar.gz dist
+ # 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
436
437
- name: Publish package on PyPI
438
# It is recommended to pin a commit hash here for security but it
0 commit comments