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 030ca97 commit 85b677bCopy full SHA for 85b677b
.github/workflows/cibuildwheel.yml
@@ -47,7 +47,7 @@ jobs:
47
48
- name: Install cibuildwheel
49
run: |
50
- python -m pip install cibuildwheel==1.9.0
+ python -m pip install cibuildwheel==2.1.1
51
52
- name: Build minimum NumPy for aarch64
53
if: matrix.cibw_archs == 'aarch64' && steps.numpy-cache.outputs.cache-hit != 'true'
@@ -64,6 +64,17 @@ jobs:
64
65
cp setup.cfg.template setup.cfg
66
67
+ - name: Build wheels for CPython 3.10
68
+ run: |
69
+ python -m cibuildwheel --output-dir dist
70
+ env:
71
+ CIBW_BUILD: "cp310-*"
72
+ CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
73
+ CIBW_MANYLINUX_I686_IMAGE: manylinux2010
74
+ CIBW_BEFORE_BUILD: pip install certifi numpy==1.21.2
75
+ MPL_DISABLE_FH4: "yes"
76
+ CIBW_ARCHS: ${{ matrix.cibw_archs }}
77
+
78
- name: Build wheels for CPython 3.9
79
80
python -m cibuildwheel --output-dir dist
0 commit comments