Skip to content

Commit b535ed1

Browse files
committed
python: add Python 3.11 to manylinux script
1 parent af2c95e commit b535ed1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

python/manylinux/build-wheels.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e -u
55
# export AUDITWHEEL=/tmp/auditwheel-pycbc
66
# export PLATFORM=manylinux2014_x86_64
77

8-
#allowed_python_versions=("cp37-cp37m", "cp38-cp38", "cp39-cp39", "cp310-cp310")
8+
#allowed_python_versions=("cp37-cp37m", "cp38-cp38", "cp39-cp39", "cp310-cp310", "cp311-cp311")
99
#allowed_python_versions=("cp38-cp38")
1010
IFS=' ' read -r -a allowed_python_versions <<< $CPYTHON_VERSIONS
1111

@@ -31,6 +31,9 @@ function get_python_version {
3131
"cp310-cp310")
3232
python_version="3.10"
3333
;;
34+
"cp311-cp311")
35+
python_version="3.11"
36+
;;
3437
esac
3538

3639
echo "$python_version"

0 commit comments

Comments
 (0)