|
93 | 93 | - uses: actions/setup-python@v3
|
94 | 94 |
|
95 | 95 | - name: Install cibuildwheel
|
96 |
| - run: python -m pip install cibuildwheel==2.10.2 |
| 96 | + run: python -m pip install cibuildwheel==2.11.0 |
97 | 97 |
|
98 | 98 | - name: Build wheels
|
99 | 99 | run: python -m cibuildwheel --output-dir wheelhouse
|
@@ -209,6 +209,19 @@ Changelog
|
209 | 209 |
|
210 | 210 | <!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
|
211 | 211 |
|
| 212 | +### v2.11.0 |
| 213 | + |
| 214 | +_13 October 2022_ |
| 215 | + |
| 216 | +- 🌟 Adds support for cross-compiling Windows ARM64 wheels. To use this feature, add `ARM64` to the [CIBW_ARCHS](https://cibuildwheel.readthedocs.io/en/stable/options/#archs) option on a Windows Intel runner. (#1144) |
| 217 | +- ✨ Adds support for building Linux aarch64 wheels on Circle CI. (#1307) |
| 218 | +- ✨ Adds support for building Windows wheels on Gitlab CI. (#1295) |
| 219 | +- ✨ Adds support for building Linux aarch64 wheels under emulation on Gitlab CI. (#1295) |
| 220 | +- ✨ Adds the ability to test `cp38-macosx_arm64` wheels on a native arm64 runner. To do this, you'll need to preinstall the (experimental) [universal2 version of CPython 3.8](https://www.python.org/ftp/python/3.8.10/python-3.8.10-macos11.pkg) on your arm64 runner before invoking cibuildwheel. Note: it is not recommended to build x86_64 wheels with this setup, your wheels will have limited compatibility wrt macOS versions. (#1283) |
| 221 | +- 🛠 Improved error messages when using custom Docker images and Python cannot be found at the correct path. (#1298) |
| 222 | +- 📚 Sample configs for Azure Pipelines and Travis CI updated (#1296) |
| 223 | +- 📚 Other docs improvements - including more information about using Homebrew for build dependencies (#1290) |
| 224 | + |
212 | 225 | ### v2.10.2
|
213 | 226 |
|
214 | 227 | _25 September 2022_
|
@@ -244,15 +257,6 @@ _11 August 2022_
|
244 | 257 | - ✨ Improved error messages when misspelling TOML options, suggesting close matches (#1205)
|
245 | 258 | - 🛠 When running on Apple Silicon (so far, an unsupported mode of operation), cibuildwheel no longer builds universal2 wheels by default - just arm64. See [#1204](https://github.com/pypa/cibuildwheel/issues/1204) for discussion. We hope to release official support for native builds on Apple Silicon soon! (#1217)
|
246 | 259 |
|
247 |
| -### v2.8.1 |
248 |
| - |
249 |
| -_18 July 2022_ |
250 |
| - |
251 |
| -- 🐛 Fix a bug when building CPython 3.8 wheels on an Apple Silicon machine where testing would always fail. cibuildwheel will no longer attempt to test the arm64 part of CPython 3.8 wheels because we use the x86_64 installer of CPython 3.8 due to its macOS system version backward-compatibility. See [#1169](https://github.com/pypa/cibuildwheel/pull/1169) for more details. (#1171) |
252 |
| -- 🛠 Update the prerelease CPython 3.11 to 3.11.0b4. (#1180) |
253 |
| -- 🛠 The GitHub Action will ensure a compatible version of Python is installed on the runner (#1114) |
254 |
| -- 📚 A few docs improvements |
255 |
| - |
256 | 260 | <!-- END bin/update_readme_changelog.py -->
|
257 | 261 |
|
258 | 262 | ---
|
|
0 commit comments