Skip to content

Commit 8dc3466

Browse files
authored
Merge pull request #175 from thewtex/linux-3.10
Linux 3.10
2 parents 9818b11 + 38f1ee9 commit 8dc3466

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

scripts/dockcross-manylinux-build-module-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919

2020
# Generate dockcross scripts
21-
docker run --rm dockcross/manylinux2014-x64:20210823-d7b98b4 > /tmp/dockcross-manylinux-x64
21+
docker run --rm dockcross/manylinux2014-x64:20211011-a315bdc > /tmp/dockcross-manylinux-x64
2222
chmod u+x /tmp/dockcross-manylinux-x64
2323

2424
script_dir=$(cd $(dirname $0) || exit 1; pwd)

scripts/dockcross-manylinux-build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# scripts/dockcross-manylinux-build-wheels.sh cp39
99

1010
# Generate dockcross scripts
11-
docker run --rm dockcross/manylinux2014-x64:20210823-d7b98b4 > /tmp/dockcross-manylinux-x64
11+
docker run --rm dockcross/manylinux2014-x64:20211011-a315bdc > /tmp/dockcross-manylinux-x64
1212
chmod u+x /tmp/dockcross-manylinux-x64
1313

1414
script_dir=$(cd $(dirname $0) || exit 1; pwd)

scripts/internal/manylinux-build-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [[ $# -eq 0 ]]; then
1616
PYBIN=(/opt/python/*/bin)
1717
PYBINARIES=()
1818
for version in "${PYBIN[@]}"; do
19-
if [[ ${version} == *"cp37"* || ${version} == *"cp38"* || ${version} == *"cp39"* ]]; then
19+
if [[ ${version} == *"cp37"* || ${version} == *"cp38"* || ${version} == *"cp39"* || ${version} == *"cp310"* ]]; then
2020
PYBINARIES+=(${version})
2121
fi
2222
done

scripts/internal/manylinux-build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ for PYBIN in "${PYBINARIES[@]}"; do
166166
done
167167

168168
if test "${ARCH}" == "x64"; then
169-
/opt/python/cp37-cp37m/bin/pip3 install auditwheel wheel
169+
sudo /opt/python/cp39-cp39/bin/pip3 install auditwheel wheel
170170
# This step will fixup the wheel switching from 'linux' to 'manylinux2014' tag
171171
for whl in dist/itk_*linux_$(uname -p).whl; do
172-
/opt/python/cp37-cp37m/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
172+
/opt/python/cp39-cp39/bin/auditwheel repair --plat manylinux2014_x86_64 ${whl} -w /work/dist/
173173
rm ${whl}
174174
done
175175
else

0 commit comments

Comments
 (0)