|
93 | 93 | - uses: actions/setup-python@v5 |
94 | 94 |
|
95 | 95 | - name: Install cibuildwheel |
96 | | - run: python -m pip install cibuildwheel==2.17.0 |
| 96 | + run: python -m pip install cibuildwheel==2.18.0 |
97 | 97 |
|
98 | 98 | - name: Build wheels |
99 | 99 | run: python -m cibuildwheel --output-dir wheelhouse |
@@ -210,6 +210,23 @@ Changelog |
210 | 210 |
|
211 | 211 | <!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually --> |
212 | 212 |
|
| 213 | +### v2.18.0 |
| 214 | + |
| 215 | +_12 May 2024_ |
| 216 | + |
| 217 | +- ✨ Adds CPython 3.13 support, under the prerelease flag [CIBW_PRERELEASE_PYTHONS](https://cibuildwheel.pypa.io/en/stable/options/#prerelease-pythons). This version of cibuildwheel uses 3.13.0b1. Free-threading mode is not available yet, waiting on official binaries (planned for beta 2) and pip support. |
| 218 | + |
| 219 | + While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.13 will be available in cibuildwheel without the flag. (#1816) |
| 220 | +- ✨ Musllinux now defaults to `musllinux_1_2`. You can set the older `manylinux_1_1` via config if needed. (#1817) |
| 221 | +- 🛠 No longer pre-seed setuptools/wheel in virtual environments (#1819) |
| 222 | +- 🛠 Respect the constraints file when building with pip, matching build (#1818) |
| 223 | +- 🛠 Use uv to compile our pinned dependencies, 10x faster and doesn't require special setup (#1778) |
| 224 | +- 🐛 Fix an issue with the schema (#1788) |
| 225 | +- 📚 Document the new delocate error checking macOS versions (#1766) |
| 226 | +- 📚 Document Rust builds (#1816) |
| 227 | +- 📚 Speed up our readthedocs builds with uv, 26 seconds -> 6 seconds to install dependencies (#1816) |
| 228 | + |
| 229 | + |
213 | 230 | ### v2.17.0 |
214 | 231 |
|
215 | 232 | _11 March 2024_ |
@@ -248,17 +265,6 @@ _26 January 2024_ |
248 | 265 | - 🛠 Adds the ability to disable mounting the host filesystem in containers to `/host`, through the `disable_host_mount` suboption on [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.pypa.io/en/stable/options/#container-engine). |
249 | 266 | - 📚 A lot of docs improvements! (#1708, #1705, #1686, #1679, #1667, #1665) |
250 | 267 |
|
251 | | -### v2.16.2 |
252 | | - |
253 | | -_3 October 2023_ |
254 | | - |
255 | | -- 🛠 Updates CPython 3.12 version to 3.12.0, final release (#1635) |
256 | | -- ✨ Adds a debug option [`CIBW_DEBUG_KEEP_CONTAINER`](https://cibuildwheel.pypa.io/en/stable/options/#cibw_debug_keep_container) to stop cibuildwheel deleting build containers after the build finishes. (#1620) |
257 | | -- 📚 Adds support for `[tool.cibuildwheel]` checking by adding a schema compatible with the [validate-pyproject](https://github.com/abravalheri/validate-pyproject/) tool (#1622, #1628, #1629) |
258 | | -- 🐛 Fix parsing of `CIBW_CONTAINER_ENGINE` and `CIBW_BUILD_FRONTEND` options to not break arguments on `:` characters (#1621) |
259 | | -- 🐛 Fix the evaluation order of `CIBW_ENVIRONMENT` and `CIBW_ENVIRONMENT_PASS` so that `CIBW_ENVIRONMENT` assignments can reference environment variables passed through from the host machine. (#1617) |
260 | | -- 🛠 Supports manylinux images' deferred installation of interpreters through the `manylinux-interpreters` tool (#1630) |
261 | | - |
262 | 268 | <!-- END bin/update_readme_changelog.py --> |
263 | 269 |
|
264 | 270 | --- |
|
0 commit comments