Thanks to visit codestin.com Credit goes to github.com
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.
1 parent dfc5adf commit 480514fCopy full SHA for 480514f
.github/workflows/cibuildwheel.yml
@@ -61,6 +61,18 @@ jobs:
61
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