Skip to content

Commit

Permalink
Add python 3.10 building in manylinux.
Browse files Browse the repository at this point in the history
  • Loading branch information
illume committed Oct 23, 2021
1 parent 69043a8 commit 0298d26
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 0298d26

Please sign in to comment.