We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 197b681 commit bc67691Copy full SHA for bc67691
.github/workflows/main.yml
@@ -156,6 +156,7 @@ jobs:
156
run: python3 -m pip wheel . -w ./wheelhouse/ --verbose
157
- name: Auditing wheels and adding armv6l tag (Running on RPi, binaries compiled as armv6l)
158
run: |
159
+ python3 -m pip install -U wheel auditwheel
160
for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat linux_armv7l -w wheelhouse/preaudited/; done
161
for whl in wheelhouse/preaudited/*.whl; do python3 -m wheel tags --platform-tag +linux_armv6l "$whl"; done
162
mkdir -p wheelhouse/audited/
0 commit comments