Skip to content

Commit b30561b

Browse files
authored
add repair with auditwheel
1 parent 98128db commit b30561b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/pypi_release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ jobs:
1515
- name: Build inside manylinux_2_28 container
1616
run: |
1717
docker run --rm -v $(pwd):/io -w /io quay.io/pypa/manylinux_2_28_x86_64 /bin/bash -c "\
18-
/opt/python/cp312-cp312/bin/python -m pip install --upgrade pip build && \
19-
/opt/python/cp312-cp312/bin/python -m pip install -r /io/requirements.txt && \
20-
/opt/python/cp312-cp312/bin/python -m build --wheel --outdir /io/dist"
18+
/opt/python/cp312-cp312/bin/python -m pip install --upgrade pip build auditwheel && \
19+
/opt/python/cp312-cp312/bin/python -m pip install -r requirements.txt && \
20+
/opt/python/cp312-cp312/bin/python -m build --wheel --outdir /io/dist && \
21+
auditwheel repair /io/dist/*.whl --wheel-dir /io/dist"
2122
2223
- name: List built wheels (debugging step)
2324
run: ls -lh dist/

0 commit comments

Comments
 (0)