Skip to content

Commit

Permalink
Merge pull request #2787 from pygame/manylinux-310
Browse files Browse the repository at this point in the history
Add python 3.10 building in manylinux
  • Loading branch information
illume committed Oct 23, 2021
2 parents 69043a8 + 0298d26 commit 6d50f38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildconfig/manylinux-build/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
set -e -x

if [ `uname -m` == "aarch64" ]; then
export SUPPORTED_PYTHONS="cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39"
export SUPPORTED_PYTHONS="cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310"
else
export SUPPORTED_PYTHONS="cp27-cp27mu cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39"
export SUPPORTED_PYTHONS="cp27-cp27mu cp35-cp35m cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39"
fi

if [[ "$1" == "buildpypy" ]]; then
export SUPPORTED_PYTHONS="pp27-pypy_75 pp37-pypy37_pp75"
export SUPPORTED_PYTHONS="pp27-pypy_75 pp37-pypy37_pp75 cp310-cp310"
fi


Expand Down

0 comments on commit 6d50f38

Please sign in to comment.