π‘ Build Python wheels for all the platforms with minimal configuration.
2,262
stars
3,693
commits
Python
primary language
Sep 7, 2026
updated
Python wheels are great. Building them across Mac, Linux, Windows, on multiple versions of Python, is not.
cibuildwheel is here to help. cibuildwheel runs on your CI server - currently it supports GitHub Actions, Azure Pipelines, CircleCI, and GitLab CI - and it builds and tests your wheels across all of your platforms.
While cibuildwheel itself requires a recent Python version to run (we support the last three releases), it can target the following versions to build wheels:
| macOS Intel | macOS Apple Silicon | Windows 64bit | Windows 32bit | Windows Arm64 | manylinux musllinux x86_64 | manylinux musllinux i686 | manylinux musllinux aarch64 | manylinux musllinux ppc64le | manylinux musllinux s390x | manylinux musllinux armv7l | Android | iOS | Pyodide | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CPython 3.9 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.10 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.11 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.12 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | β 3 |
| CPython 3.13 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| CPython 3.14 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| CPython 3.15 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| PyPyΒ 3.9 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| PyPyΒ 3.10 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| PyPyΒ 3.11 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| GraalPyΒ 3.12 v25.0 | β | β | β | N/A | N/A | β 1 | N/A | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
1 PyPy & GraalPy are only supported for manylinux wheels.
2 Windows arm64 support is experimental.
3 Not supported on PyPI, uses old pyodide tag instead of pyemscripten. Requires pyodide-eol enable.
4 manylinux armv7l support is experimental. As there are no RHEL based image for this architecture, it's using an Ubuntu based image instead.
See the cibuildwheel 1 documentation if you need to build unsupported versions of Python, such as Python 2.
cibuildwheel runs inside a CI service. Supported platforms depend on which service you're using:
| Linux | macOS | Windows | Linux ARM | macOS ARM | Windows ARM | Android | iOS | Pyodide | |
|---|---|---|---|---|---|---|---|---|---|
| GitHub Actions | β | β | β | β | β | β 2 | β 4 | β 3 | β |
| Azure Pipelines | β | β | β | β | β 2 | β 4 | β 3 | β 5 | |
| CircleCI | β | β | β | β | β 45 | β 35 | β 5 | ||
| GitLab CI | β | β | β | β 1 | β | β 45 | β 35 | β 5 |
1 Requires emulation, distributed separately. Other services may also support Linux ARM through emulation or third-party build hosts, but these are not tested in our CI.
2 Uses cross-compilation. It is not possible to test arm64 on this CI platform.
3 Requires a macOS runner; runs tests on the simulator for the runner's architecture.
4 Building for Android requires the runner to be Linux x86_64, macOS ARM64 or macOS x86_64. Testing has additional requirements.
5 Builds may work, but are untested in cibuildwheel's CI.
To build manylinux, musllinux, macOS, and Windows wheels on GitHub Actions, you could use this .github/workflows/wheels.yml:
name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-15-intel, macos-latest]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
# Used to host cibuildwheel
- uses: actions/setup-python@v6
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==4.2.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
# ...
- uses: actions/upload-artifact@v6
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
For more information, including PyPI deployment, and the use of other CI services or the dedicated GitHub Action, check out the documentation and the examples.
The following diagram summarises the steps that cibuildwheel takes on each platform.

Explore an interactive version of this diagram in the docs.
[!WARNING] Building and testing wheels executes arbitrary code from your project and its dependencies. Although cibuildwheel uses OCI containers and Pyodide for some builds, these provide no security guarantees - the code you're building and testing has full access to the environment that's invoking cibuildwheel.
If you cannot trust all the code that's pulled in, maintain good security hygiene: keep the job that builds distributions separate from the job that uploads them to PyPI, handle secrets and credentials with care and rotate them regularly, and follow the principle of least privilege when granting permissions. Do not store sensitive data on CI runners.
| Option | Description | |
|---|---|---|
| Build selection | platform | Override the auto-detected target platform |
buildskip | Choose the Python versions to build | |
archs | Change the architectures built on your machine by default. | |
project-requires-python | Manually set the Python compatibility of your project | |
enable | Enable building with extra categories of selectors present. | |
allow-empty | Suppress the error code if no wheels match the specified build identifiers | |
| Build customization | build-frontend | Set the tool to use to build, either "build" (default), "build[uv]", or "pip" |
config-settings | Specify config-settings for the build backend. | |
environment | Set environment variables | |
environment-pass | Set environment variables on the host to pass-through to the container. | |
before-all | Execute a shell command on the build system before any wheels are built. | |
before-build | Execute a shell command preparing each wheel's build | |
xbuild-tools | Binaries on the path that should be included in an isolated cross-build environment. | |
xbuild-files | Platform-specific files in the build environment | |
repair-wheel-command | Execute a shell command to repair each built wheel | |
manylinux-*-imagemusllinux-*-image | Specify manylinux / musllinux container images | |
container-engine | Specify the container engine to use when building Linux wheels | |
dependency-versions | Control the versions of the tools cibuildwheel uses | |
pyodide-version | Specify the Pyodide version to use for pyodide platform builds | |
| Auditing | audit-requires | Install Python dependencies for the audit step |
audit-command | Use a tool to check wheels before the end of the run | |
| Testing | test-command | The command to test each built wheel |
before-test | Execute a shell command before testing each wheel | |
test-sources | Paths that are copied into the working directory of the tests | |
test-requires | Install Python dependencies before running the tests | |
test-extras | Install your wheel for testing using extras_require | |
test-groups | Specify test dependencies from your project's dependency-groups | |
test-skip | Skip running tests on some builds | |
test-environment | Set environment variables for the test environment | |
test-runtime | Controls how the tests will be executed. | |
| Debugging | debug-keep-container | Keep the container after running for debugging. |
debug-traceback | Print full traceback when errors occur. | |
build-verbosity | Increase/decrease the output of the build |
These options can be specified in a pyproject.toml file, or as environment variables, see configuration docs.
Here are some repos that use cibuildwheel.
| Name | CI | OS | Notes |
|---|---|---|---|
| scikit-learn | The machine learning library. A complex but clean config using many of cibuildwheel's features to build a large project with Cython and C++ extensions. | ||
| duckdb | DuckDB is an analytical in-process SQL database management system | ||
| NumPy | The fundamental package for scientific computing with Python. | ||
| pytorch-fairseq | Facebook AI Research Sequence-to-Sequence Toolkit written in Python. | ||
| NCNN | ncnn is a high-performance neural network inference framework optimized for the mobile platform | ||
| Matplotlib | The venerable Matplotlib, a Python library with C++ portions | ||
| Tornado | Tornado is a Python web framework and asynchronous networking library. Uses stable ABI for a small C extension. | ||
| MyPy | The compiled version of MyPy using MyPyC. | ||
| Prophet | Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. | ||
| Triton | Self hosted runners |
βΉοΈ That's just a handful, there are many more! Check out the Working Examples page in the docs.
Since cibuildwheel repairs the wheel with delocate, auditwheel, or delvewheel, it might automatically bundle dynamically linked libraries from the build machine.
It helps ensure that the library can run without any dependencies outside of the pip toolchain.
This is similar to static linking, so it might have some license implications. Check the license for any code you're pulling in to make sure that's allowed.
4 August 2026
"cpython-prerelease" enable set. It's time to build and upload these wheels to PyPI! This release includes CPython 3.15.0rc1, which is guaranteed to be ABI compatible with the final release. (#2944)cp315-pyodide_wasm32 build identifier, using Pyodide 315.0.0a2. These are also stable wrt. the final release. (#2958)4xx response is still reported at once. (#2953)default as a build-frontend value on Pyodide, and accepts pyodide-build in the top-level table and in overrides (#2951)test_overridden_pip_constraint, which is not necessary since #2583 (#2956, #2957)24 July 2026
pyodide-build as a separate build-frontend, now the default frontend for Pyodide, with verbosity flags handling. Any other frontend is ignored with a warning on Pyodide. (#2609, #2945)pinned_docker_images.cfg. (#2915)test-runtime environment variables (e.g. CIBW_TEST_RUNTIME_ANDROID) not being honored (#2941)test-requires and audit-requires so PEP 508 specifiers containing spaces work (#2913)archs parsing case-insensitive and platform-aware, so e.g. arm64 works on Windows (#2920){project} placeholder in config-settings (#2934)pyodide-version option against the build identifier with a clear error (#2925).tar.bz2 to .tar.gz (#2939)python3-config available in the build and test venvs on macOS (#2922)orjson dependency, no longer used by mypy 2+ (#2923)cp314-pyodide_wasm32 entry to the build identifier table (#2947)pip wheel build frontend and ClearLinux (#2926)12 June 2026
pyodide-prerelease enable flag. (#2906)CIBW_CACHE_PATH (#2842)7 June 2026
See @henryiii's release post for more info on new features!
π Adds wheel auditing with abi3audit as a default after the repair step, with new audit-requires and audit-command options (#2805)
π Adds pyemscripten platform tag support (PEP 783), updates Pyodide to 314.0.0a2, and adds a pyodide-eol enable flag for building end-of-life Pyodide versions (#2812, #2848)
π Sets up delvewheel as the default repair-wheel-command for Windows, so extension module DLLs are now bundled automatically. Skip by setting it to empty if not needed. (#2831)
β¨ Adds CPython 3.15 support, under the enable option cpython-prerelease. This version of cibuildwheel uses 3.15.0b2. (#2833, #2850)
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.15 will be available in cibuildwheel without the flag.
β¨ Adds CPython 3.15 support for iOS and Android (#2857, #2858)
β¨ Adds Android improvements for building NumPy and related packages, including auditwheel support, pkg-config and Fortran configuration, and the xbuild-files option (#2695)
β¨ Adds CIBUILDWHEEL_BUILD_IDENTIFIER environment variable set to the current build identifier (e.g. cp311-manylinux_x86_64) during per-build steps (#2872)
β¨ Adds {project} and {package} placeholders to config-settings (#2827)
β οΈ Drops support for Python 3.8 (#2686)
β οΈ Removes the experimental CPython 3.13 free-threading builds and the cpython-freethreading enable option. CPython 3.14+ free-threading support remains available without the enable flag. (#2684)
β οΈ Drops support for Cirrus CI, which is shutting down June 1, 2026 (#2817)
β οΈ Drops GraalPy 3.11 (gp311) support, as agreed in #2741, and removes GraalPy 24-only workarounds (#2895)
π Adds SHA256 verification for direct downloads of Python interpreters, virtualenv, and python-build-standalone assets (#2873)
π Adds tarfile extraction filter for safe archive extraction (#2856)
π Fixes UV_PYTHON not being set for before-build on Linux when using uv as the build-frontend (#2830)
π Fixes detection of musl libc when downloading python-build-standalone, which previously always selected the gnu asset on musl hosts like Alpine (#2889)
π Fixes config-settings expansion when {project} or {package} contains spaces or backslashes (#2886)
π Prevents deadlock when linux32 fails and forwards platform args to the sanity check (#2880, #2888)
π Fixes container resource leaks on start failure and during teardown (#2879, #2887)
π Removes potential partial cache-population in case of error (#2892)
π Raises a clear error when ANDROID_API_LEVEL is not an integer (#2891)
π Replaces assert with proper exception in python-build-standalone (#2859)
π Uses ConfigurationError when package_dir is outside cwd instead of a generic Exception (#2898)
π Updates dependencies and container pins (#2893, #2882, #2874, #2868, #2862, #2884, #2845, #2837, #2818, #2810, #2838, #2813)
π Updates Android to Python 3.13.13 and 3.14.4 (#2821)
π Applies Pyodide-specific patches to the Emscripten toolchain installation (#2800)
π Uses python -V -V for Windows build diagnostics (#2832)
π Simplifies pinned container image lookup (#2897)
π Minor fixups across error messages, OCI container, and options (#2860)
πΌ Adds PEP 723 metadata for bin/ scripts and drops the bin dependency group (#2819)
πΌ Improves Azure test reliability with retries and caching (#2890)
πΌ Fixes Windows GitLab CI test running (#2870)
πΌ Updates CI action pins and dev dependencies (#2902, #2867, #2851, #2843, #2826, #2823, #2820, #2807)
πΌ Adds agent and copilot setup files (#2861)
πΌ Uses if TYPE_CHECKING: blocks (#2866, #2864)
π§ͺ Fixes Android tests using the uv frontend (#2809)
π§ͺ Fixes the update-dependencies workflow to use uv to run nox (#2808)
π§ͺ Adds unit tests for OCIContainer._get_platform_args (#2878)
π Updates documentation for delvewheel as the default Windows repair-wheel-command, including the build diagram, schema defaults, and legal note (#2877, #2853, #2891)
π Documents platform-specific before-build configuration (#2834)
π Updates the "How it works" diagram with details of Android, iOS, and Pyodide builds (#2816)
π Adds Pyodide icon and regenerates working examples data for Android, iOS, and Pyodide (#2815, #2811)
π Adds intersphinx support for external documentation linking (#2871)
π Adds instructions for building CUDA wheels and fixes manylinux container references in FAQ (#2896, #2900)
π Links back to source in docs (#2806)
π Removes outdated numpy info (#2855)
2 April 2026
enable option cpython-freethreading is therefore also deprecated. Builds specifying enable = "all" no longer select cpython-freethreading. CPython 3.14 free-threading support remains available without the enable flag. (#2787)repair-wheel-command if it's defined in config (#2761)uv to fail when environments define PYTHON_VERSION or UV_PYTHON, conflicting with our venvs (#2795)That's the last few versions.
βΉοΈ Want more changelog? Head over to the changelog page in the docs.
For more info on how to contribute to cibuildwheel, see the docs.
Everyone interacting with the cibuildwheel project via codebase, issue tracker, chat rooms, or otherwise is expected to follow the PSF Code of Conduct.
Core:
Platform maintainers:
cibuildwheel stands on the shoulders of giants.
run_with_env.cmdMassive props also to-
Another very similar tool to consider is matthew-brett/multibuild. multibuild is a shell script toolbox for building a wheel on various platforms. It is used as a basis to build some of the big data science tools, like SciPy.
If you are building Rust wheels, you can get by without some of the tricks required to make GLIBC work via manylinux; this is especially relevant for cross-compiling, which is easy with Rust. See maturin-action for a tool that is optimized for building Rust wheels and cross-compiling.
(top 30 of 167)
Python
100.0%
π‘ Build Python wheels for all the platforms with minimal configuration.
2,262
stars
3,693
commits
Python
primary language
Sep 7, 2026
updated
Python wheels are great. Building them across Mac, Linux, Windows, on multiple versions of Python, is not.
cibuildwheel is here to help. cibuildwheel runs on your CI server - currently it supports GitHub Actions, Azure Pipelines, CircleCI, and GitLab CI - and it builds and tests your wheels across all of your platforms.
While cibuildwheel itself requires a recent Python version to run (we support the last three releases), it can target the following versions to build wheels:
| macOS Intel | macOS Apple Silicon | Windows 64bit | Windows 32bit | Windows Arm64 | manylinux musllinux x86_64 | manylinux musllinux i686 | manylinux musllinux aarch64 | manylinux musllinux ppc64le | manylinux musllinux s390x | manylinux musllinux armv7l | Android | iOS | Pyodide | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CPython 3.9 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.10 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.11 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | N/A |
| CPython 3.12 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | N/A | N/A | β 3 |
| CPython 3.13 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| CPython 3.14 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| CPython 3.15 | β | β | β | β | β 2 | β | β | β | β | β | β 4 | β | β | β |
| PyPyΒ 3.9 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| PyPyΒ 3.10 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| PyPyΒ 3.11 v7.3 | β | β | β | N/A | N/A | β 1 | β 1 | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
| GraalPyΒ 3.12 v25.0 | β | β | β | N/A | N/A | β 1 | N/A | β 1 | N/A | N/A | N/A | N/A | N/A | N/A |
1 PyPy & GraalPy are only supported for manylinux wheels.
2 Windows arm64 support is experimental.
3 Not supported on PyPI, uses old pyodide tag instead of pyemscripten. Requires pyodide-eol enable.
4 manylinux armv7l support is experimental. As there are no RHEL based image for this architecture, it's using an Ubuntu based image instead.
See the cibuildwheel 1 documentation if you need to build unsupported versions of Python, such as Python 2.
cibuildwheel runs inside a CI service. Supported platforms depend on which service you're using:
| Linux | macOS | Windows | Linux ARM | macOS ARM | Windows ARM | Android | iOS | Pyodide | |
|---|---|---|---|---|---|---|---|---|---|
| GitHub Actions | β | β | β | β | β | β 2 | β 4 | β 3 | β |
| Azure Pipelines | β | β | β | β | β 2 | β 4 | β 3 | β 5 | |
| CircleCI | β | β | β | β | β 45 | β 35 | β 5 | ||
| GitLab CI | β | β | β | β 1 | β | β 45 | β 35 | β 5 |
1 Requires emulation, distributed separately. Other services may also support Linux ARM through emulation or third-party build hosts, but these are not tested in our CI.
2 Uses cross-compilation. It is not possible to test arm64 on this CI platform.
3 Requires a macOS runner; runs tests on the simulator for the runner's architecture.
4 Building for Android requires the runner to be Linux x86_64, macOS ARM64 or macOS x86_64. Testing has additional requirements.
5 Builds may work, but are untested in cibuildwheel's CI.
To build manylinux, musllinux, macOS, and Windows wheels on GitHub Actions, you could use this .github/workflows/wheels.yml:
name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-15-intel, macos-latest]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
# Used to host cibuildwheel
- uses: actions/setup-python@v6
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==4.2.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
# ...
- uses: actions/upload-artifact@v6
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
For more information, including PyPI deployment, and the use of other CI services or the dedicated GitHub Action, check out the documentation and the examples.
The following diagram summarises the steps that cibuildwheel takes on each platform.

Explore an interactive version of this diagram in the docs.
[!WARNING] Building and testing wheels executes arbitrary code from your project and its dependencies. Although cibuildwheel uses OCI containers and Pyodide for some builds, these provide no security guarantees - the code you're building and testing has full access to the environment that's invoking cibuildwheel.
If you cannot trust all the code that's pulled in, maintain good security hygiene: keep the job that builds distributions separate from the job that uploads them to PyPI, handle secrets and credentials with care and rotate them regularly, and follow the principle of least privilege when granting permissions. Do not store sensitive data on CI runners.
| Option | Description | |
|---|---|---|
| Build selection | platform | Override the auto-detected target platform |
buildskip | Choose the Python versions to build | |
archs | Change the architectures built on your machine by default. | |
project-requires-python | Manually set the Python compatibility of your project | |
enable | Enable building with extra categories of selectors present. | |
allow-empty | Suppress the error code if no wheels match the specified build identifiers | |
| Build customization | build-frontend | Set the tool to use to build, either "build" (default), "build[uv]", or "pip" |
config-settings | Specify config-settings for the build backend. | |
environment | Set environment variables | |
environment-pass | Set environment variables on the host to pass-through to the container. | |
before-all | Execute a shell command on the build system before any wheels are built. | |
before-build | Execute a shell command preparing each wheel's build | |
xbuild-tools | Binaries on the path that should be included in an isolated cross-build environment. | |
xbuild-files | Platform-specific files in the build environment | |
repair-wheel-command | Execute a shell command to repair each built wheel | |
manylinux-*-imagemusllinux-*-image | Specify manylinux / musllinux container images | |
container-engine | Specify the container engine to use when building Linux wheels | |
dependency-versions | Control the versions of the tools cibuildwheel uses | |
pyodide-version | Specify the Pyodide version to use for pyodide platform builds | |
| Auditing | audit-requires | Install Python dependencies for the audit step |
audit-command | Use a tool to check wheels before the end of the run | |
| Testing | test-command | The command to test each built wheel |
before-test | Execute a shell command before testing each wheel | |
test-sources | Paths that are copied into the working directory of the tests | |
test-requires | Install Python dependencies before running the tests | |
test-extras | Install your wheel for testing using extras_require | |
test-groups | Specify test dependencies from your project's dependency-groups | |
test-skip | Skip running tests on some builds | |
test-environment | Set environment variables for the test environment | |
test-runtime | Controls how the tests will be executed. | |
| Debugging | debug-keep-container | Keep the container after running for debugging. |
debug-traceback | Print full traceback when errors occur. | |
build-verbosity | Increase/decrease the output of the build |
These options can be specified in a pyproject.toml file, or as environment variables, see configuration docs.
Here are some repos that use cibuildwheel.
| Name | CI | OS | Notes |
|---|---|---|---|
| scikit-learn | The machine learning library. A complex but clean config using many of cibuildwheel's features to build a large project with Cython and C++ extensions. | ||
| duckdb | DuckDB is an analytical in-process SQL database management system | ||
| NumPy | The fundamental package for scientific computing with Python. | ||
| pytorch-fairseq | Facebook AI Research Sequence-to-Sequence Toolkit written in Python. | ||
| NCNN | ncnn is a high-performance neural network inference framework optimized for the mobile platform | ||
| Matplotlib | The venerable Matplotlib, a Python library with C++ portions | ||
| Tornado | Tornado is a Python web framework and asynchronous networking library. Uses stable ABI for a small C extension. | ||
| MyPy | The compiled version of MyPy using MyPyC. | ||
| Prophet | Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth. | ||
| Triton | Self hosted runners |
βΉοΈ That's just a handful, there are many more! Check out the Working Examples page in the docs.
Since cibuildwheel repairs the wheel with delocate, auditwheel, or delvewheel, it might automatically bundle dynamically linked libraries from the build machine.
It helps ensure that the library can run without any dependencies outside of the pip toolchain.
This is similar to static linking, so it might have some license implications. Check the license for any code you're pulling in to make sure that's allowed.
4 August 2026
"cpython-prerelease" enable set. It's time to build and upload these wheels to PyPI! This release includes CPython 3.15.0rc1, which is guaranteed to be ABI compatible with the final release. (#2944)cp315-pyodide_wasm32 build identifier, using Pyodide 315.0.0a2. These are also stable wrt. the final release. (#2958)4xx response is still reported at once. (#2953)default as a build-frontend value on Pyodide, and accepts pyodide-build in the top-level table and in overrides (#2951)test_overridden_pip_constraint, which is not necessary since #2583 (#2956, #2957)24 July 2026
pyodide-build as a separate build-frontend, now the default frontend for Pyodide, with verbosity flags handling. Any other frontend is ignored with a warning on Pyodide. (#2609, #2945)pinned_docker_images.cfg. (#2915)test-runtime environment variables (e.g. CIBW_TEST_RUNTIME_ANDROID) not being honored (#2941)test-requires and audit-requires so PEP 508 specifiers containing spaces work (#2913)archs parsing case-insensitive and platform-aware, so e.g. arm64 works on Windows (#2920){project} placeholder in config-settings (#2934)pyodide-version option against the build identifier with a clear error (#2925).tar.bz2 to .tar.gz (#2939)python3-config available in the build and test venvs on macOS (#2922)orjson dependency, no longer used by mypy 2+ (#2923)cp314-pyodide_wasm32 entry to the build identifier table (#2947)pip wheel build frontend and ClearLinux (#2926)12 June 2026
pyodide-prerelease enable flag. (#2906)CIBW_CACHE_PATH (#2842)7 June 2026
See @henryiii's release post for more info on new features!
π Adds wheel auditing with abi3audit as a default after the repair step, with new audit-requires and audit-command options (#2805)
π Adds pyemscripten platform tag support (PEP 783), updates Pyodide to 314.0.0a2, and adds a pyodide-eol enable flag for building end-of-life Pyodide versions (#2812, #2848)
π Sets up delvewheel as the default repair-wheel-command for Windows, so extension module DLLs are now bundled automatically. Skip by setting it to empty if not needed. (#2831)
β¨ Adds CPython 3.15 support, under the enable option cpython-prerelease. This version of cibuildwheel uses 3.15.0b2. (#2833, #2850)
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.15 will be available in cibuildwheel without the flag.
β¨ Adds CPython 3.15 support for iOS and Android (#2857, #2858)
β¨ Adds Android improvements for building NumPy and related packages, including auditwheel support, pkg-config and Fortran configuration, and the xbuild-files option (#2695)
β¨ Adds CIBUILDWHEEL_BUILD_IDENTIFIER environment variable set to the current build identifier (e.g. cp311-manylinux_x86_64) during per-build steps (#2872)
β¨ Adds {project} and {package} placeholders to config-settings (#2827)
β οΈ Drops support for Python 3.8 (#2686)
β οΈ Removes the experimental CPython 3.13 free-threading builds and the cpython-freethreading enable option. CPython 3.14+ free-threading support remains available without the enable flag. (#2684)
β οΈ Drops support for Cirrus CI, which is shutting down June 1, 2026 (#2817)
β οΈ Drops GraalPy 3.11 (gp311) support, as agreed in #2741, and removes GraalPy 24-only workarounds (#2895)
π Adds SHA256 verification for direct downloads of Python interpreters, virtualenv, and python-build-standalone assets (#2873)
π Adds tarfile extraction filter for safe archive extraction (#2856)
π Fixes UV_PYTHON not being set for before-build on Linux when using uv as the build-frontend (#2830)
π Fixes detection of musl libc when downloading python-build-standalone, which previously always selected the gnu asset on musl hosts like Alpine (#2889)
π Fixes config-settings expansion when {project} or {package} contains spaces or backslashes (#2886)
π Prevents deadlock when linux32 fails and forwards platform args to the sanity check (#2880, #2888)
π Fixes container resource leaks on start failure and during teardown (#2879, #2887)
π Removes potential partial cache-population in case of error (#2892)
π Raises a clear error when ANDROID_API_LEVEL is not an integer (#2891)
π Replaces assert with proper exception in python-build-standalone (#2859)
π Uses ConfigurationError when package_dir is outside cwd instead of a generic Exception (#2898)
π Updates dependencies and container pins (#2893, #2882, #2874, #2868, #2862, #2884, #2845, #2837, #2818, #2810, #2838, #2813)
π Updates Android to Python 3.13.13 and 3.14.4 (#2821)
π Applies Pyodide-specific patches to the Emscripten toolchain installation (#2800)
π Uses python -V -V for Windows build diagnostics (#2832)
π Simplifies pinned container image lookup (#2897)
π Minor fixups across error messages, OCI container, and options (#2860)
πΌ Adds PEP 723 metadata for bin/ scripts and drops the bin dependency group (#2819)
πΌ Improves Azure test reliability with retries and caching (#2890)
πΌ Fixes Windows GitLab CI test running (#2870)
πΌ Updates CI action pins and dev dependencies (#2902, #2867, #2851, #2843, #2826, #2823, #2820, #2807)
πΌ Adds agent and copilot setup files (#2861)
πΌ Uses if TYPE_CHECKING: blocks (#2866, #2864)
π§ͺ Fixes Android tests using the uv frontend (#2809)
π§ͺ Fixes the update-dependencies workflow to use uv to run nox (#2808)
π§ͺ Adds unit tests for OCIContainer._get_platform_args (#2878)
π Updates documentation for delvewheel as the default Windows repair-wheel-command, including the build diagram, schema defaults, and legal note (#2877, #2853, #2891)
π Documents platform-specific before-build configuration (#2834)
π Updates the "How it works" diagram with details of Android, iOS, and Pyodide builds (#2816)
π Adds Pyodide icon and regenerates working examples data for Android, iOS, and Pyodide (#2815, #2811)
π Adds intersphinx support for external documentation linking (#2871)
π Adds instructions for building CUDA wheels and fixes manylinux container references in FAQ (#2896, #2900)
π Links back to source in docs (#2806)
π Removes outdated numpy info (#2855)
2 April 2026
enable option cpython-freethreading is therefore also deprecated. Builds specifying enable = "all" no longer select cpython-freethreading. CPython 3.14 free-threading support remains available without the enable flag. (#2787)repair-wheel-command if it's defined in config (#2761)uv to fail when environments define PYTHON_VERSION or UV_PYTHON, conflicting with our venvs (#2795)That's the last few versions.
βΉοΈ Want more changelog? Head over to the changelog page in the docs.
For more info on how to contribute to cibuildwheel, see the docs.
Everyone interacting with the cibuildwheel project via codebase, issue tracker, chat rooms, or otherwise is expected to follow the PSF Code of Conduct.
Core:
Platform maintainers:
cibuildwheel stands on the shoulders of giants.
run_with_env.cmdMassive props also to-
Another very similar tool to consider is matthew-brett/multibuild. multibuild is a shell script toolbox for building a wheel on various platforms. It is used as a basis to build some of the big data science tools, like SciPy.
If you are building Rust wheels, you can get by without some of the tricks required to make GLIBC work via manylinux; this is especially relevant for cross-compiling, which is easy with Rust. See maturin-action for a tool that is optimized for building Rust wheels and cross-compiling.
(top 30 of 167)
Python
100.0%