Bump pypa/cibuildwheel from 2.5.0 to 2.8.1
Bumps pypa/cibuildwheel from 2.5.0 to 2.8.1.
Release notes
Sourced from pypa/cibuildwheel's releases.
v2.8.1
- 🐛 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 for more details. (#1171)
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b4. (#1180)
- 🛠 The GitHub Action will ensure a compatible version of Python is installed on the runner (#1114)
- 📚 A few docs improvements
v2.8.0
✨ 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_ENGINEoption. (#966)✨ 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.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 or cffi. Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions.
Check out this example ctypes project to see an example of how it works. (#1151)
🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152)
📚 A few docs improvements and updates to keep things up-to-date.
2.7.0
- 🌟 Added support for the new
manylinux_2_28images. These new images are based on AlmaLinux, the community-driven successor to CentOS, unlikemanylinux_2_24, which was based on Debian. To build on these images, set yourCIBW_MANYLINUX_*_IMAGEoption tomanylinux_2_28. (#1026)- 🐛 Fix a bug where tests were not being run on CPython 3.11 (when CIBW_PRERELEASE_PYTHONS was set) (#1138)
- ✨ You can now build Linux wheels on Windows, as long as you have Docker installed and set to 'Linux containers' (#1117)
- 🐛 Fix a bug on macOS that caused cibuildwheel to crash trying to overwrite a previously-built wheel of the same name (#1129)
2.6.1
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
2.6.0
- 🌟 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-pythonsorCIBW_PRERELEASE_PYTHONSto test. This version of cibuildwheel includes CPython 3.11.0b1. (#1109)- 📚 Added an interactive diagram showing how cibuildwheel works to the docs (#1100)
Changelog
Sourced from pypa/cibuildwheel's changelog.
v2.8.1
18 July 2022
- 🐛 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 for more details. (#1171)
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b4. (#1180)
- 🛠 The GitHub Action will ensure a compatible version of Python is installed on the runner (#1114)
- 📚 A few docs improvements
v2.8.0
5 July 2022
✨ 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_ENGINEoption. (#966)✨ 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.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 or cffi. Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions.
Check out this example ctypes project to see an example of how it works. (#1151)
🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152)
📚 A few docs improvements and updates to keep things up-to-date.
v2.7.0
17 June 2022
- 🌟 Added support for the new
manylinux_2_28images. These new images are based on AlmaLinux, the community-driven successor to CentOS, unlike manylinux_2_24, which was based on Debian. To build on these images, set yourCIBW_MANYLINUX_*_IMAGEoption tomanylinux_2_28. (#1026)- 🐛 Fix a bug where tests were not being run on CPython 3.11 (when CIBW_PRERELEASE_PYTHONS was set) (#1138)
- ✨ You can now build Linux wheels on Windows, as long as you have Docker installed and set to 'Linux containers' (#1117)
- 🐛 Fix a bug on macOS that caused cibuildwheel to crash trying to overwrite a previously-built wheel of the same name. (#1129)
v2.6.1
7 June 2022
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
v2.6.0
25 May 2022
- 🌟 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-pythonsorCIBW_PRERELEASE_PYTHONSto test. This version of cibuildwheel includes CPython 3.11.0b1. (#1109)- 📚 Added an interactive diagram showing how cibuildwheel works to the docs (#1100)
Commits
afb4329Bump version: v2.8.15d73e91Merge pull request #1185 from pypa/pre-commit-ci-update-config444c40fMerge pull request #1180 from pypa/update-dependencies-pr98f5bc5Merge pull request #1182 from larsoner/bump-macos8bf28fb[pre-commit.ci] pre-commit autoupdate39176acUpdate dependencies61821a8fix(docs): pin things due to the mkdocs pin (#1181)a7b7d14FIX: Name0e1878bDOC: Bump to non-deprecated image7c922f9Merge pull request #1147 from abitrolly/patch-2- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)