diff options
author | Yury Selivanov <yury@magic.io> | 2018-11-20 13:30:36 -0500 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-11-20 14:25:07 -0500 |
commit | 50c23b0b66a5f68aa6307ae115a10af40d32e1df (patch) | |
tree | 9be0610e38d85455ab3001a7d8bb0a33d4cdaa28 /.ci | |
parent | 523d0f8157a4f998fd4c83c78fe0779a1f8f17ed (diff) | |
download | immutables-50c23b0b66a5f68aa6307ae115a10af40d32e1df.tar.gz immutables-50c23b0b66a5f68aa6307ae115a10af40d32e1df.zip |
ci: Test/build 3.7 wheels
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/build-manylinux-wheels.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.ci/build-manylinux-wheels.sh b/.ci/build-manylinux-wheels.sh index 0cab659..ce5e772 100755 --- a/.ci/build-manylinux-wheels.sh +++ b/.ci/build-manylinux-wheels.sh @@ -5,8 +5,7 @@ set -e -x # Compile wheels PYTHON="/opt/python/${PYTHON_VERSION}/bin/python" PIP="/opt/python/${PYTHON_VERSION}/bin/pip" -${PIP} install --upgrade pip wheel -${PIP} install --upgrade setuptools +${PIP} install --upgrade pip setuptools wheel~=0.31.1 ${PIP} install -r /io/.ci/requirements.txt rm -rf /io/build ${PIP} wheel /io/ -w /io/dist/ |