Skip to content

Commit 88f6c28

Browse files
authored
Update releasebuild.yml
1 parent d416c71 commit 88f6c28

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

.github/workflows/releasebuild.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,33 +57,25 @@ jobs:
5757
name: Build wheels on ubuntu-latest
5858
needs: [build_sdist]
5959
runs-on: ubuntu-latest
60-
env:
61-
CIBW_ARCHS_LINUX: wasm32
62-
CIBW_BUILD: cp312
63-
CIBW_PLATFORM: pyodide
64-
CIBW_TEST_SKIP: "{*_{aarch64,ppc64le,s390x},*musllinux_*}"
65-
#CIBW_TEST_REQUIRES: pytest hypothesis pandas
66-
CIBW_TEST_REQUIRES: pytest hypothesis
67-
CIBW_TEST_COMMAND: pytest {package}/tests
68-
# CIBW_TEST_COMMAND: "{package}/tools/seg_wrapper.sh pytest {package}/tests"
69-
CIBW_BUILD_VERBOSITY: 3
7060

7161
steps:
7262
- uses: actions/download-artifact@v4
7363
with:
7464
name: artifact-sdist
7565
path: dist
7666

67+
# Set up the version of Python that supports pyodide
7768
- uses: actions/setup-python@v5
69+
with:
70+
python-version: "3.12"
7871

7972
- name: Copy wheel
8073
run: cp dist/*.tar.gz rapidfuzz.tar.gz
8174

82-
- uses: docker/setup-qemu-action@v3
83-
name: Set up QEMU
84-
8575
- name: Build wheel
8676
uses: pypa/[email protected]
77+
env:
78+
CIBW_PLATFORM: pyodide
8779
with:
8880
package-dir: rapidfuzz.tar.gz
8981
output-dir: wheelhouse

0 commit comments

Comments
 (0)