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 3707441 commit 2578668Copy full SHA for 2578668
1 file changed
.github/workflows/cibuildwheel.yml
@@ -60,6 +60,17 @@ jobs:
60
CIBW_BUILD: "cp37-* cp38-*"
61
CIBW_ARCHS: aarch64
62
63
+ - name: Build wheels for CPython 3.10
64
+ run: |
65
+ python -m cibuildwheel --output-dir dist
66
+ env:
67
+ CIBW_BUILD: "cp310-*"
68
+ CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
69
+ CIBW_MANYLINUX_I686_IMAGE: manylinux2014
70
+ CIBW_BEFORE_BUILD: pip install certifi numpy==1.21.2
71
+ MPL_DISABLE_FH4: "yes"
72
+ CIBW_ARCHS: ${{ matrix.cibw_archs }}
73
+
74
- name: Build wheels for CPython 3.9
75
run: |
76
python -m cibuildwheel --output-dir dist
0 commit comments