|
89 | 89 | - uses: actions/setup-python@v3
|
90 | 90 |
|
91 | 91 | - name: Install cibuildwheel
|
92 |
| - run: python -m pip install cibuildwheel==2.7.0 |
| 92 | + run: python -m pip install cibuildwheel==2.8.0 |
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.0 |
| 208 | + |
| 209 | +_5 July 2022_ |
| 210 | + |
| 211 | +- ✨ 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) |
| 212 | +- ✨ Adds support for building `py3-none-{platform}` wheels. 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. Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151) |
| 213 | +- 🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152) |
| 214 | +- 📚 A few docs improvements and updates to keep things up-to-date. |
| 215 | + |
207 | 216 | ### v2.7.0
|
208 | 217 |
|
209 | 218 | _17 June 2022_
|
@@ -236,19 +245,6 @@ _29 April 2022_
|
236 | 245 | - 🐛 Workaround a permissions issue on Linux relating to newer versions of git and setuptools_scm (#1095)
|
237 | 246 | - 📚 Minor docs improvements
|
238 | 247 |
|
239 |
| -### v2.4.0 |
240 |
| - |
241 |
| -_2 April 2022_ |
242 |
| - |
243 |
| -- ✨ cibuildwheel now supports running locally on Windows and macOS (as well as Linux). On macOS, you'll have to install the versions of Pythons that you want to use from Python.org, and cibuildwheel will use them. On Windows, cibuildwheel will install it's own versions of Python. Check out [the documentation](https://cibuildwheel.readthedocs.io/en/stable/setup/#local) for instructions. (#974) |
244 |
| -- ✨ Added support for building PyPy 3.9 wheels. (#1031) |
245 |
| -- ✨ Listing at the end of the build now displays the size of each wheel (#975) |
246 |
| -- 🐛 Workaround a connection timeout bug on Travis CI ppc64le runners (#906) |
247 |
| -- 🐛 Fix an encoding error when reading setup.py in the wrong encoding (#977) |
248 |
| -- 🛠 Setuptools updated to 61.3.0, including experimental support for reading config from pyproject.toml(PEP 621). This could change the behaviour of your build if you have a pyproject.toml with a `[project]` table, because that takes precedence over setup.py and setup.cfg. Check out the [setuptools docs](https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html) and the [project metadata specification](https://packaging.python.org/en/latest/specifications/declaring-project-metadata/) for more info. |
249 |
| -- 🛠 Many other dependency updates. |
250 |
| -- 📚 Minor docs improvements |
251 |
| - |
252 | 248 | <!-- END bin/update_readme_changelog.py -->
|
253 | 249 |
|
254 | 250 | ---
|
|
0 commit comments