Sha256: 478a1af5d56e5a495a2d922a4ba7860c79b4cb29aa1949f3ce8b425bd68a8863
Contents?: true
Size: 370 Bytes
Versions: 74
Compression:
Stored size: 370 Bytes
Contents
#!/bin/sh set -ex cargo --version # Build wheels # todo this one is deprecated, use "build" package /opt/python/cp37-cp37m/bin/python setup.py bdist_wheel # Audit wheels for wheel in dist/*.whl; do auditwheel repair $wheel -w dist/ rm $wheel done # Extract wheels for wheel in dist/*.whl; do /opt/python/cp37-cp37m/bin/wheel unpack $wheel -d wheelhouse done
Version data entries
74 entries across 37 versions & 1 rubygems