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/
11
11
12
12
# Bundle external shared libraries into the wheels.
13
13
for whl in /io/dist/* .whl; do
14
- auditwheel repair $whl -w /io/dist/
14
+ auditwheel repair --plat=" manylinux2010_${PYARCH} " \
15
+ $whl -w /io/dist/
15
16
rm /io/dist/* -linux_* .whl
16
17
done
17
18
Original file line number Diff line number Diff line change @@ -43,11 +43,12 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
43
43
maj='${pyver} '.split('.')[0], \
44
44
min='${pyver} '.split('.')[1]))" )
45
45
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} "
48
48
docker pull " ${ML_IMAGE} "
49
49
docker run --rm \
50
50
-v " ${_root} " :/io \
51
+ -e " PYARCH=${arch} " \
51
52
-e " PYMODULE=${PYMODULE} " \
52
53
-e " PYTHON_VERSION=${ML_PYTHON_VERSION} " \
53
54
" ${ML_IMAGE} " /io/.ci/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change 20
20
# Check if all expected wheels have been built and uploaded.
21
21
release_platforms=(
22
22
" macosx_10_??_x86_64"
23
- " manylinux1_i686"
24
- " manylinux1_x86_64"
23
+ " manylinux*_x86_64"
25
24
)
26
25
27
26
P=" ${PYMODULE} -${PACKAGE_VERSION} "
You can’t perform that action at this time.
0 commit comments