Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14b9250

Browse files
authored
Merge pull request #20819 from hrnciar/wheels-py3.10
Add CPython 3.10 wheels
2 parents 3cd1395 + 84aef60 commit 14b9250

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,18 @@ jobs:
6161
CIBW_BUILD: "cp37-* cp38-*"
6262
CIBW_ARCHS: aarch64
6363

64+
- name: Build wheels for CPython 3.10
65+
run: |
66+
python -m cibuildwheel --output-dir dist
67+
if: matrix.os != 'macos-latest'
68+
env:
69+
CIBW_BUILD: "cp310-*"
70+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
71+
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
72+
CIBW_BEFORE_BUILD: pip install certifi numpy==1.21.2
73+
MPL_DISABLE_FH4: "yes"
74+
CIBW_ARCHS: ${{ matrix.cibw_archs }}
75+
6476
- name: Build wheels for CPython 3.9
6577
run: |
6678
python -m cibuildwheel --output-dir dist

0 commit comments

Comments
 (0)