|
89 | 89 | - uses: actions/setup-python@v3
|
90 | 90 |
|
91 | 91 | - name: Install cibuildwheel
|
92 |
| - run: python -m pip install cibuildwheel==2.8.0 |
| 92 | + run: python -m pip install cibuildwheel==2.8.1 |
93 | 93 |
|
94 | 94 | - name: Build wheels
|
95 | 95 | run: python -m cibuildwheel --output-dir wheelhouse
|
@@ -204,6 +204,15 @@ Changelog
|
204 | 204 |
|
205 | 205 | <!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
|
206 | 206 |
|
| 207 | +### v2.8.1 |
| 208 | + |
| 209 | +_18 July 2022_ |
| 210 | + |
| 211 | +- 🐛 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) |
| 212 | +- 🛠 Update the prerelease CPython 3.11 to 3.11.0b4. (#1180) |
| 213 | +- 🛠 The GitHub Action will ensure a compatible version of Python is installed on the runner (#1114) |
| 214 | +- 📚 A few docs improvements |
| 215 | + |
207 | 216 | ### v2.8.0
|
208 | 217 |
|
209 | 218 | _5 July 2022_
|
@@ -239,16 +248,6 @@ _25 May 2022_
|
239 | 248 | - 🌟 Added the ability to test building wheels on CPython 3.11! Because CPython 3.11 is in beta, these wheels should not be distributed, because they might not be compatible with the final release, but it's available to build for testing purposes. Use the flag [`--prerelease-pythons` or `CIBW_PRERELEASE_PYTHONS`](https://cibuildwheel.readthedocs.io/en/stable/options/#prerelease-pythons) to test. This version of cibuildwheel includes CPython 3.11.0b1. (#1109)
|
240 | 249 | - 📚 Added an interactive diagram showing how cibuildwheel works to the [docs](https://cibuildwheel.readthedocs.io/en/stable/#how-it-works) (#1100)
|
241 | 250 |
|
242 |
| -### v2.5.0 |
243 |
| - |
244 |
| -_29 April 2022_ |
245 |
| - |
246 |
| -- ✨ Added support for building ABI3 wheels. cibuildwheel will now recognise when an ABI3 wheel was produced, and skip subsequent build steps where the previously built wheel is compatible. Tests still will run on all selected versions of Python, using the ABI3 wheel. Check [this entry](https://cibuildwheel.readthedocs.io/en/stable/faq/#abi3) in the docs for more info. (#1091) |
247 |
| -- ✨ You can now build wheels directly from sdist archives, in addition to source directories. Just call cibuildwheel with an sdist argument on the command line, like `cibuildwheel mypackage-1.0.0.tar.gz`. For more details, check the [`--help` output](https://cibuildwheel.readthedocs.io/en/stable/options/#command-line) (#1096) |
248 |
| -- 🐛 Fix a bug where cibuildwheel would crash when no builds are selected and `--allow-empty` is passed (#1086) |
249 |
| -- 🐛 Workaround a permissions issue on Linux relating to newer versions of git and setuptools_scm (#1095) |
250 |
| -- 📚 Minor docs improvements |
251 |
| - |
252 | 251 | <!-- END bin/update_readme_changelog.py -->
|
253 | 252 |
|
254 | 253 | ---
|
|
0 commit comments