From f90ff735d8766631b437da4cc37f82668bbf2096 Mon Sep 17 00:00:00 2001 From: Ankith <46915066+ankith26@users.noreply.github.com> Date: Sat, 14 Aug 2021 10:49:58 +0530 Subject: [PATCH] Get py3.10 on CI --- .github/workflows/macos.yml | 2 +- .github/workflows/windows.yml | 2 +- buildconfig/manylinux-build/build-wheels.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 00537ee48e..9f5ce1180f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -35,7 +35,7 @@ jobs: matrix: # TODO: when Github actions supports M1 Mac, add `macos-11.0` to this os: [macos-10.15] - pyversion: ['pypy-3.7', 'pypy-2.7', '2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] + pyversion: ['pypy-3.7', 'pypy-2.7', '2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2.3.4 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e8f52d7dea..70510bb1c2 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -36,7 +36,7 @@ jobs: # PyPy 7.3.4 and above does not have 32-bit builds, only 64-bit ones (python 3.7) # So we build with 7.3.3 for 32-bit builds, and 7.3.4+ for 64-bit builds matrix: - pyversion: ['3.5', '3.6', '3.7', '3.8', '3.9', 'pypy-2.7-v7.3.3', 'pypy-3.6-v7.3.3', 'pypy-3.7-v7.3.3', 'pypy-3.7'] + pyversion: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-2.7-v7.3.3', 'pypy-3.6-v7.3.3', 'pypy-3.7-v7.3.3', 'pypy-3.7'] arch: ['x64', 'x86'] exclude: diff --git a/buildconfig/manylinux-build/build-wheels.sh b/buildconfig/manylinux-build/build-wheels.sh index 86e382ffe3..f7a2e02c6c 100755 --- a/buildconfig/manylinux-build/build-wheels.sh +++ b/buildconfig/manylinux-build/build-wheels.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -x -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 cp310-cp310" if [[ "$1" == "buildpypy" ]]; then export SUPPORTED_PYTHONS="pp27-pypy_73 pp36-pypy36_pp73 pp37-pypy37_pp73"