Skip to content

Commit 3174b7d

Browse files
committed
Bump many-linux to 2010
1 parent 46c5e9e commit 3174b7d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.ci/build-manylinux-wheels.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ ${PIP} wheel /io/ -w /io/dist/
1111

1212
# Bundle external shared libraries into the wheels.
1313
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/
1516
rm /io/dist/*-linux_*.whl
1617
done
1718

.ci/travis-build-wheels.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.ci/travis-release.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ fi
2020
# Check if all expected wheels have been built and uploaded.
2121
release_platforms=(
2222
"macosx_10_??_x86_64"
23-
"manylinux1_i686"
24-
"manylinux1_x86_64"
23+
"manylinux*_x86_64"
2524
)
2625

2726
P="${PYMODULE}-${PACKAGE_VERSION}"

0 commit comments

Comments
 (0)