15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
cd bindings/python
|
|
|
|
# Compile wheels
|
|
if [ -f /opt/python/cp36-cp36m/bin/python ];then
|
|
/opt/python/cp36-cp36m/bin/python setup.py bdist_wheel
|
|
else
|
|
python3 setup.py bdist_wheel
|
|
fi
|
|
cd dist
|
|
auditwheel repair *.whl
|
|
mv -f wheelhouse/*.whl .
|