Sha256: 0cb1a5eeb7cde8140ce30981374a6ed1bcd0534c0c7bd65a2e7fdb0e1bbed848

Contents?: true

Size: 377 Bytes

Versions: 1

Compression:

Stored size: 377 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

# 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

1 entries across 1 versions & 1 rubygems

Version Path
libmongocrypt-helper-1.8.0.0.1001 ext/libmongocrypt/libmongocrypt/bindings/python/build-manylinux-wheel.sh