File: build_wheels.sh

package info (click to toggle)
pyranges 0.0.111%2Bds-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,992 kB
  • sloc: python: 5,546; makefile: 37; sh: 6
file content (12 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# docker pull quay.io/pypa/manylinux1_x86_64
# # or docker pull quay.io/pypa/manylinux1_i686
# docker run -it -v (pwd):/io quay.io/pypa/manylinux1_x86_64

for PYBIN in /opt/python/*3[5-7]*/bin; do
    "${PYBIN}/pip" wheel /io/ -w wheelhouse/
done

for whl in wheelhouse/*.whl; do
    auditwheel repair "$whl" -w /io/wheelhouse/
done