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

Skip to content

Commit 85b677b

Browse files
committed
Add CPython 3.10 wheels
1 parent 030ca97 commit 85b677b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Install cibuildwheel
4949
run: |
50-
python -m pip install cibuildwheel==1.9.0
50+
python -m pip install cibuildwheel==2.1.1
5151
5252
- name: Build minimum NumPy for aarch64
5353
if: matrix.cibw_archs == 'aarch64' && steps.numpy-cache.outputs.cache-hit != 'true'
@@ -64,6 +64,17 @@ jobs:
6464
run: |
6565
cp setup.cfg.template setup.cfg
6666
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+
6778
- name: Build wheels for CPython 3.9
6879
run: |
6980
python -m cibuildwheel --output-dir dist

0 commit comments

Comments
 (0)