Sha256: dcb21f306ad65dcaea043c784965c2a40ba3191dbf64cb6323ffb554f80fa987
Contents?: true
Size: 389 Bytes
Versions: 3
Compression:
Stored size: 389 Bytes
Contents
#!/bin/bash -ex cd /python # Compile wheel # https://github.com/pypa/manylinux/issues/49 rm -rf build /opt/python/cp37-cp37m/bin/python setup.py bdist_wheel --universal # Audit wheels and write manylinux tag for whl in dist/*.whl; do # Skip already built manylinux wheels. if [[ "$whl" != *"manylinux"* ]]; then auditwheel repair $whl -w dist rm $whl fi done
Version data entries
3 entries across 3 versions & 1 rubygems