Skip to content

Commit

Permalink
All wheels are now built
Browse files Browse the repository at this point in the history
  • Loading branch information
toastedcrumpets committed May 7, 2021
1 parent cb0414d commit 44c2834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
DOCKER_IMAGE=quay.io/pypa/manylinux2014_x86_64
PLAT=manylinux2014_x86_64
docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/scripts/manylinux_entrypoint.sh
ls wheelhouse/
4 changes: 2 additions & 2 deletions scripts/manylinux_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ yum install -y gtest-devel
# Compile wheels
ls /opt/python/
mkdir -p /io/wheelhouse
for VER in cp39-cp39; do #cp36-cp36m cp37-cp37m cp38-cp38
for VER in cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39; do #
PYBIN=/opt/python/$VER/bin
"${PYBIN}/pip" install -r /io/dev-requirements.txt
"${PYBIN}/pip" wheel /io/ --no-deps -w /io/wheelhouse/
Expand All @@ -30,7 +30,7 @@ for whl in /io/wheelhouse/*.whl; do
done

# Install packages and test
for VER in cp39-cp39; do #cp36-cp36m cp37-cp37m cp38-cp38
for VER in cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39; do
PYBIN=/opt/python/$VER/bin
"${PYBIN}/pip" install stator --no-index -f /io/wheelhouse
#(cd "$HOME"; "${PYBIN}/nosetests" pymanylinuxdemo)
Expand Down

0 comments on commit 44c2834

Please sign in to comment.