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 a4dca24 commit 699182cCopy full SHA for 699182c
.github/workflows/cibuildwheel.yml
@@ -135,6 +135,19 @@ jobs:
135
name: sdist
136
path: dist/
137
138
+ - name: Build wheels for CPython 3.12
139
+ uses: pypa/cibuildwheel@39a63b5912f086dd459cf6fcb13dcdd3fe3bc24d # v2.15.0
140
+ with:
141
+ package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
142
+ env:
143
+ CIBW_BUILD: "cp312-*"
144
+ CIBW_ARCHS: ${{ matrix.cibw_archs }}
145
+ # Remove this once NumPy with Python 3.12 wheels is not pre-release.
146
+ CIBW_BEFORE_BUILD: >-
147
+ pip install certifi &&
148
+ pip install --pre numpy>=1.25 &&
149
+ rm -rf {package}/build
150
+
151
- name: Build wheels for CPython 3.11
152
uses: pypa/cibuildwheel@39a63b5912f086dd459cf6fcb13dcdd3fe3bc24d # v2.15.0
153
with:
0 commit comments