|
92 | 92 | - uses: actions/setup-python@v3
|
93 | 93 |
|
94 | 94 | - name: Install cibuildwheel
|
95 |
| - run: python -m pip install cibuildwheel==2.10.1 |
| 95 | + run: python -m pip install cibuildwheel==2.10.2 |
96 | 96 |
|
97 | 97 | - name: Build wheels
|
98 | 98 | run: python -m cibuildwheel --output-dir wheelhouse
|
@@ -208,6 +208,14 @@ Changelog
|
208 | 208 |
|
209 | 209 | <!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
|
210 | 210 |
|
| 211 | +### v2.10.2 |
| 212 | + |
| 213 | +_25 September 2022_ |
| 214 | + |
| 215 | +- 🐛 Fix a bug that caused `win32` identifiers to fail when used with `--only`. (#1282) |
| 216 | +- 🐛 Fix computation of `auto`/`auto64`/`auto32` archs when targeting a different platform to the one that you're running cibuildwheel on. (#1266) |
| 217 | +- 📚 Fix an mistake in the 'how it works' diagram. (#1274) |
| 218 | + |
211 | 219 | ### v2.10.1
|
212 | 220 |
|
213 | 221 | _18 September 2022_
|
@@ -244,19 +252,6 @@ _18 July 2022_
|
244 | 252 | - 🛠 The GitHub Action will ensure a compatible version of Python is installed on the runner (#1114)
|
245 | 253 | - 📚 A few docs improvements
|
246 | 254 |
|
247 |
| -### v2.8.0 |
248 |
| - |
249 |
| -_5 July 2022_ |
250 |
| - |
251 |
| -- ✨ You can now run cibuildwheel on Podman, as an alternate container engine to Docker (which remains the default). This is useful in environments where a Docker daemon isn't available, for example, it can be run inside a Docker container, or without root access. To use Podman, set the [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine) option. (#966) |
252 |
| -- ✨ Adds support for building `py3-none-{platform}` wheels. This works the same as ABI3 - wheels won't be rebuilt, but tests will still be run across all selected versions of Python. |
253 |
| - |
254 |
| - > These wheels contain native extension code, but don't use the Python APIs. Typically, they're bridged to Python using a FFI module like [ctypes](https://docs.python.org/3/library/ctypes.html) or [cffi](https://cffi.readthedocs.io/en/latest/). Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions. |
255 |
| - |
256 |
| - Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151) |
257 |
| -- 🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152) |
258 |
| -- 📚 A few docs improvements and updates to keep things up-to-date. |
259 |
| - |
260 | 255 | <!-- END bin/update_readme_changelog.py -->
|
261 | 256 |
|
262 | 257 | ---
|
|
0 commit comments