|
92 | 92 | - uses: actions/setup-python@v3 |
93 | 93 |
|
94 | 94 | - name: Install cibuildwheel |
95 | | - run: python -m pip install cibuildwheel==2.9.0 |
| 95 | + run: python -m pip install cibuildwheel==2.10.0 |
96 | 96 |
|
97 | 97 | - name: Build wheels |
98 | 98 | run: python -m cibuildwheel --output-dir wheelhouse |
@@ -208,6 +208,18 @@ Changelog |
208 | 208 |
|
209 | 209 | <!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually --> |
210 | 210 |
|
| 211 | +### v2.10.0 |
| 212 | + |
| 213 | +_13 September 2022_ |
| 214 | + |
| 215 | +- 🌟 Adds support for [building wheels on Cirrus CI](https://cibuildwheel.readthedocs.io/en/stable/setup/#cirrus-ci). This is exciting for us, as it's the first public CI platform that natively supports macOS Apple Silicon (aka. M1, `arm64`) runners. As such, it's the first platform that you can natively build _and test_ macOS `arm64` wheels. It also has native Linux ARM (aarch64) runners, for fast, native builds there. (#1191) |
| 216 | +- 🌟 Adds support for running cibuildwheel on Apple Silicon machines. For a while, we've supported cross-compilation of Apple Silicon wheels on `x86_64`, but now that we have Cirrus CI we can run our test suite and officially support running cibuildwheel on `arm64`. (#1191) |
| 217 | +- ✨ Adds the `--only` [command line option](https://cibuildwheel.readthedocs.io/en/stable/options/#command-line), to specify a single build to run. Previously, it could be cumbersome to set all the build selection options to target a specific build - for example, you might have to run something like `CIBW_BUILD=cp39-manylinux_x86_64 cibuildwheel --platform linux --archs x86_64`. The new `--only` option overrides all the build selection options to simplify running a single build, which now looks like `cibuildwheel --only cp39-manylinux_x86_64`. (#1098) |
| 218 | +- ✨ Adds the [`CIBW_CONFIG_SETTINGS`](https://cibuildwheel.readthedocs.io/en/stable/options/#config-settings) option, so you can pass arguments to your package's build backend (#1244) |
| 219 | +- 🛠 Updates the CPython 3.11 version to the latest release candidate - v3.11.0rc2. (#1265) |
| 220 | +- 🐛 Fix a bug that can cause a RecursionError on Windows when building from an sdist. (#1253) |
| 221 | +- 🛠 Add support for the s390x architecture on manylinux_2_28 (#1255) |
| 222 | + |
211 | 223 | ### v2.9.0 |
212 | 224 |
|
213 | 225 | _11 August 2022_ |
@@ -248,12 +260,6 @@ _17 June 2022_ |
248 | 260 | - ✨ You can now build Linux wheels on Windows, as long as you have Docker installed and set to 'Linux containers' (#1117) |
249 | 261 | - 🐛 Fix a bug on macOS that caused cibuildwheel to crash trying to overwrite a previously-built wheel of the same name. (#1129) |
250 | 262 |
|
251 | | -### v2.6.1 |
252 | | - |
253 | | -_7 June 2022_ |
254 | | - |
255 | | -- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3 |
256 | | - |
257 | 263 | <!-- END bin/update_readme_changelog.py --> |
258 | 264 |
|
259 | 265 | --- |
|
0 commit comments