@@ -12,14 +12,14 @@ jobs:
1212 fail-fast : false
1313 matrix :
1414 os : [ubuntu-latest, macOS-latest, windows-latest]
15- python-version : [3.6, 3.7, 3.8, 3.9 ]
16- node-version : [14.x]
15+ python-version : ["3.7", "3.8", "3.9", "3.10" ]
16+ node-version : [" 14.x" ]
1717 include :
18- - { os: ubuntu-latest, python-version: 3.6 , python-abis: "cp36-cp36m " }
19- - { os: ubuntu-latest, python-version: 3.7 , python-abis: "cp37-cp37m " }
20- - { os: ubuntu-latest, python-version: 3.8 , python-abis: "cp38-cp38 " }
21- - { os: ubuntu-latest, python-version: 3.9 , python-abis: "cp39-cp39 " }
22- - { os: windows-latest, python-version: 3.9 , build-static: 1 }
18+ - { os: ubuntu-latest, python-version: "3.7" , python-abis: "cp37-cp37m " }
19+ - { os: ubuntu-latest, python-version: "3.8" , python-abis: "cp38-cp38 " }
20+ - { os: ubuntu-latest, python-version: "3.9" , python-abis: "cp39-cp39 " }
21+ - { os: ubuntu-latest, python-version: "3.10" , python-abis: "cp310-cp310 " }
22+ - { os: windows-latest, python-version: "3.10" , build-static: 1 }
2323
2424 steps :
2525 - name : Check out code
@@ -60,10 +60,14 @@ jobs:
6060 if : startsWith(github.ref, 'refs/tags/') && matrix.no-deploy != '1'
6161 shell : bash
6262 env :
63- DOCKER_IMAGE : " quay.io/pypa/manylinux1_x86_64"
6463 PYABI : ${{ matrix.python-abis }}
6564 BUILD_STATIC : ${{ matrix.build-static }}
6665 PYPI_PWD : ${{ secrets.PYPI_PASSWORD }}
6766 run : |
6867 source ./ci/reload-env.sh
68+ if [[ "$PYTHON" =~ "3.10" ]]; then
69+ export DOCKER_IMAGE="quay.io/pypa/manylinux2014_x86_64"
70+ else
71+ export DOCKER_IMAGE="quay.io/pypa/manylinux1_x86_64"
72+ fi
6973 source ./.github/workflows/upload-packages.sh
0 commit comments