8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3dd25ed + 480514f commit 4acd8d4Copy full SHA for 4acd8d4
.github/workflows/cibuildwheel.yml
@@ -61,6 +61,18 @@ jobs:
61
< 97AE span class="pl-ent">CIBW_BUILD: "cp37-* cp38-*"
62
CIBW_ARCHS: aarch64
63
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
+
76
- name: Build wheels for CPython 3.9
77
run: |
78
python -m cibuildwheel --output-dir dist
0 commit comments