Skip to content

Commit 541181d

Browse files
committed
linux: Build for CPython 3.9
1 parent 53b7810 commit 541181d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
# Versions can be restricted by passing them in as arguments to the script
77
# For example,
88
#
9-
# scripts/dockcross-manylinux-build-module-wheels.sh cp35
9+
# scripts/dockcross-manylinux-build-module-wheels.sh cp39
1010

1111
# Generate dockcross scripts
12-
docker run --rm dockcross/manylinux1-x64:20200416-a6b6635 > /tmp/dockcross-manylinux-x64
12+
docker run --rm dockcross/manylinux1-x64:20201015-96d8741 > /tmp/dockcross-manylinux-x64
1313
chmod u+x /tmp/dockcross-manylinux-x64
1414

1515
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 cp35
99

1010
# Generate dockcross scripts
11-
docker run --rm dockcross/manylinux1-x64:20200416-a6b6635 > /tmp/dockcross-manylinux-x64
11+
docker run --rm dockcross/manylinux1-x64:20201015-96d8741 > /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
@@ -14,7 +14,7 @@ if [[ $# -eq 0 ]]; then
1414
PYBIN=(/opt/python/*/bin)
1515
PYBINARIES=()
1616
for version in "${PYBIN[@]}"; do
17-
if [[ ${version} == *"cp35"* || ${version} == *"cp36"* || ${version} == *"cp37"* || ${version} == *"cp38"* ]]; then
17+
if [[ ${version} == *"cp35"* || ${version} == *"cp36"* || ${version} == *"cp37"* || ${version} == *"cp38"* || ${version} == *"cp39"* ]]; then
1818
PYBINARIES+=(${version})
1919
fi
2020
done

0 commit comments

Comments
 (0)