We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b30561b commit 0f96db1Copy full SHA for 0f96db1
.github/workflows/pypi_release.yml
@@ -18,7 +18,8 @@ jobs:
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"
+ rm -f /io/dist/*linux_x86_64.whl && \
22
+ auditwheel repair /io/dist/*.whl --plat manylinux_2_28_x86_64 --wheel-dir /io/dist"
23
24
- name: List built wheels (debugging step)
25
run: ls -lh dist/
0 commit comments