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 276436a + 84e82a2 commit 9f5c041Copy full SHA for 9f5c041
.github/workflows/cibuildwheel.yml
@@ -52,6 +52,19 @@ jobs:
52
with:
53
fetch-depth: 0
54
55
+ - name: Build wheels for CPython 3.11
56
+ uses: pypa/cibuildwheel@v2.9.0
57
+ env:
58
+ CIBW_BUILD: "cp311-*"
59
+ CIBW_SKIP: "*-musllinux*"
60
+ CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
61
+ CIBW_MANYLINUX_I686_IMAGE: manylinux2014
62
+ CIBW_BEFORE_BUILD: >-
63
+ pip install certifi oldest-supported-numpy &&
64
+ git clean -fxd build
65
+ MPL_DISABLE_FH4: "yes"
66
+ CIBW_ARCHS: ${{ matrix.cibw_archs }}
67
+
68
- name: Build wheels for CPython 3.10
69
uses: pypa/cibuildwheel@v2.9.0
70
env:
0 commit comments