File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ ${PIP} wheel /io/ -w /io/dist/
1111
1212# Bundle external shared libraries into the wheels.
1313for whl in /io/dist/* .whl; do
14- auditwheel repair $whl -w /io/dist/
14+ auditwheel repair --plat=" manylinux2010_${PYARCH} " \
15+ $whl -w /io/dist/
1516 rm /io/dist/* -linux_* .whl
1617done
1718
Original file line number Diff line number Diff line change @@ -43,11 +43,12 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
4343 maj='${pyver} '.split('.')[0], \
4444 min='${pyver} '.split('.')[1]))" )
4545
46- for arch in x86_64 i686 ; do
47- ML_IMAGE=" quay.io/pypa/manylinux1_ ${arch} "
46+ for arch in x86_64; do
47+ ML_IMAGE=" quay.io/pypa/manylinux2010_ ${arch} "
4848 docker pull " ${ML_IMAGE} "
4949 docker run --rm \
5050 -v " ${_root} " :/io \
51+ -e " PYARCH=${arch} " \
5152 -e " PYMODULE=${PYMODULE} " \
5253 -e " PYTHON_VERSION=${ML_PYTHON_VERSION} " \
5354 " ${ML_IMAGE} " /io/.ci/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change 2020# Check if all expected wheels have been built and uploaded.
2121release_platforms=(
2222 " macosx_10_??_x86_64"
23- " manylinux1_i686"
24- " manylinux1_x86_64"
23+ " manylinux*_x86_64"
2524)
2625
2726P=" ${PYMODULE} -${PACKAGE_VERSION} "
You can’t perform that action at this time.
0 commit comments