Skip to content

Commit

Permalink
Fix wheel building
Browse files Browse the repository at this point in the history
  • Loading branch information
simongibbons committed Jul 6, 2019
1 parent b45c38c commit c9f684a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build_linux_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
function build_wheels() {
echo "Building Wheels"

docker build . -t pyfof -f Dockerfile-manylinux
#docker build . -t pyfof -f Dockerfile-manylinux
CONTAINER_ID=$(docker create pyfof)
trap "docker rm -f ${CONTAINER_ID} > /dev/null || true" EXIT INT TERM

Expand Down
4 changes: 4 additions & 0 deletions build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" wheel /app/ -w wheelhouse/
done

for WHL in wheelhouse/pyfof*.whl; do
auditwheel repair "${WHL}"
done

0 comments on commit c9f684a

Please sign in to comment.