cibuildwheel 3.2.1


pip install cibuildwheel

  Latest version

Released: Oct 12, 2025


Meta
Author: Joe Rickerby
Requires Python: >=3.11

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers

Natural Language
  • English

Programming Language
  • Python :: 3
  • Python :: 3 :: Only
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
  • Python :: 3.14
  • Python :: Implementation :: CPython

Topic
  • Software Development :: Build Tools

cibuildwheel

PyPI Documentation Status Actions Status Travis Status CircleCI Status Azure Status

Documentation

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, Travis CI, CircleCI, and GitLab CI - and it builds and tests your wheels across all of your platforms.

What does it do?

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.8 N/A ✅⁵ N/A N/A N/A
CPython 3.9 ✅² ✅⁵ N/A N/A N/A
CPython 3.10 ✅² ✅⁵ N/A N/A N/A
CPython 3.11 ✅² ✅⁵ N/A N/A N/A
CPython 3.12 ✅² ✅⁵ N/A N/A ✅⁴
CPython 3.13³ ✅² ✅⁵ ✅⁴
CPython 3.14 ✅² ✅⁵ N/A
PyPy 3.8 v7.3 N/A N/A ✅¹ ✅¹ ✅¹ N/A N/A N/A N/A N/A N/A
PyPy 3.9 v7.3 N/A N/A ✅¹ ✅¹ ✅¹ N/A N/A N/A N/A N/A N/A
PyPy 3.10 v7.3 N/A N/A ✅¹ ✅¹ ✅¹ N/A N/A N/A N/A N/A N/A
PyPy 3.11 v7.3 N/A N/A ✅¹ ✅¹ ✅¹ N/A N/A N/A N/A N/A N/A
GraalPy 3.11 v24.2 N/A N/A ✅¹ N/A ✅¹ N/A N/A N/A N/A N/A N/A
GraalPy 3.12 v25.0 N/A N/A ✅¹ N/A ✅¹ N/A N/A N/A N/A N/A N/A

¹ PyPy & GraalPy are only supported for manylinux wheels.
² Windows arm64 support is experimental.
³ Free-threaded mode requires opt-in on 3.13 using enable.
⁴ Experimental, not yet supported on PyPI, but can be used directly in web deployment. Use --platform pyodide to build.
⁵ manylinux armv7l support is experimental. As there are no RHEL based image for this architecture, it's using an Ubuntu based image instead.

  • Builds manylinux, musllinux, macOS, and Windows wheels for CPython, PyPy, and GraalPy
  • Works on GitHub Actions, Azure Pipelines, Travis CI, CircleCI, GitLab CI, and Cirrus CI
  • Bundles shared library dependencies on Linux and macOS through auditwheel and delocate
  • Runs your library's tests against the wheel-installed version of your library

See the cibuildwheel 1 documentation if you need to build unsupported versions of Python, such as Python 2.

Usage

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
GitHub Actions ✅² ✅⁴ ✅³⁵
Azure Pipelines ✅² ✅⁴ ✅³⁵
Travis CI ✅⁴
CircleCI ✅⁴ ✅³
Gitlab CI ✅¹ ✅⁴ ✅³
Cirrus CI ✅⁴

¹ 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.
² Uses cross-compilation. It is not possible to test arm64 on this CI platform.
³ Requires a macOS runner; runs tests on the simulator for the runner's architecture.
⁴ Building for Android requires the runner to be Linux x86_64, macOS ARM64 or macOS x86_64. Testing has additional requirements.
⁵ The macos-15 and macos-latest images are incompatible with cibuildwheel at this time
when building iOS wheels.

Example setup

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@v5

      # Used to host cibuildwheel
      - uses: actions/setup-python@v5

      - name: Install cibuildwheel
        run: python -m pip install cibuildwheel==3.2.1

      - 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@v4
        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.

How it works

The following diagram summarises the steps that cibuildwheel takes on each platform.

Explore an interactive version of this diagram in the docs.

Option Description
Build selection platform Override the auto-detected target platform
build
skip
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.
repair-wheel-command Execute a shell command to repair each built wheel
manylinux-*-image
musllinux-*-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
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
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.

Working examples

Here are some repos that use cibuildwheel.

Name CI OS Notes
scikit-learn github icon windows icon apple icon linux icon 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 github icon apple icon linux icon windows icon DuckDB is an analytical in-process SQL database management system
pytorch-fairseq github icon apple icon linux icon Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
NumPy github icon travisci icon windows icon apple icon linux icon The fundamental package for scientific computing with Python.
Tornado github icon linux icon apple icon windows icon Tornado is a Python web framework and asynchronous networking library. Uses stable ABI for a small C extension.
NCNN github icon windows icon apple icon linux icon ncnn is a high-performance neural network inference framework optimized for the mobile platform
Matplotlib github icon windows icon apple icon linux icon The venerable Matplotlib, a Python library with C++ portions
MyPy github icon apple icon linux icon windows icon The compiled version of MyPy using MyPyC.
Prophet github icon windows icon apple icon linux icon Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.
Kivy github icon windows icon apple icon linux icon Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS

ℹ️ That's just a handful, there are many more! Check out the Working Examples page in the docs.

Legal note

Since cibuildwheel repairs the wheel with delocate or auditwheel, 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.

Changelog

v3.2.1

12 October 2025

  • 🛠 Update to CPython 3.14.0 final (#2614)
  • 🐛 Fix the default MACOSX_DEPLOYMENT_TARGET on Python 3.14 (#2613)
  • 📚 Docs improvements (#2617)

v3.2.0

22 September 2025

  • ✨ Adds GraalPy v25 (Python 3.12) support (#2597)
  • 🛠 Update to CPython 3.14.0rc3 (#2602)
  • 🛠 Adds CPython 3.14.0 prerelease support for Android, and a number of improvements to Android builds (#2568, #2591)
  • 🛠 Improvements to testing on Android, passing environment markers when installing the venv, and providing more debug output when build-verbosity is set (#2575)
  • ⚠️ PyPy 3.10 was moved to pypy-eol in the enable option, as it is now end-of-life. (#2521)
  • 📚 Docs improvements (#2574, #2601, #2598)

v3.1.4

19 August 2025

  • ✨ Add a --clean-cache command to clean up our cache (#2489)
  • 🛠 Update Python to 3.14rc2 and other patch version bumps (#2542, #2556)
  • 🛠 Update Pyodide to 0.28.2 (#2562, #2558)
  • 🐛 Fix resolution with pyodide-build when dependency-versions is set (#2548)
  • 🐛 Set CMAKE_FIND_ROOT_PATH_MODE_PACKAGE to BOTH on Android (#2547)
  • 🐛 Add patchelf dependency for platforms that can build Android wheels (#2552)
  • 🐛 Ignore empty values for CIBW_ARCHS like most other environment variables (#2541)
  • 💼 The color and suggest_on_error argparse options are now default in 3.14rc1+ (#2554)
  • 💼 Use the virtualenv release URL instead of blob URL (should be more robust) (#2555)
  • 🧪 For iOS, lowering to macos-14 is needed for now due to issues with GitHub's runner images (#2557)
  • 🧪 Split out platforms iOS and Android in our tests (#2519)
  • 🧪 Fix and enable doctests (#2546)
  • 📚 Improve our docs on free-threading (#2549)

v3.1.3

1 August 2025

  • 🐛 Fix bug where "latest" dependencies couldn't update to pip 25.2 on Windows (#2537)
  • 🧪 Use pytest-rerunfailures to improve some of our iOS/Android tests (#2527, #2539)
  • 🧪 Remove some GraalPy Windows workarounds in our tests (#2501)

v3.1.2

29 July 2025

  • ⚠️ Add an error if CIBW_FREE_THREADING_SUPPORT is set; you are likely missing 3.13t wheels, please use the enable/CIBW_ENABLE (#2520)
  • 🛠 riscv64 now enabled if you target that architecture, it's now supported on PyPI (#2509)
  • 🛠 Add warning when using cpython-experimental-riscv64 (no longer needed) (#2526, #2528)
  • 🛠 iOS versions bumped, fixing issues with 3.14 (now RC 1) (#2530)
  • 🐛 Fix bug in Android running wheel from our GitHub Action (#2517)
  • 🐛 Fix warning when using test-skip of "*-macosx_universal2:arm64" (#2522)
  • 🐛 Fix incorrect number of wheels reported in logs, again (#2517)
  • 📚 We welcome our Android platform maintainer (#2516)

That's the last few versions.

ℹ️ Want more changelog? Head over to the changelog page in the docs.


Contributing

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.

Maintainers

Core:

Platform maintainers:

Credits

cibuildwheel stands on the shoulders of giants.

Massive props also to-

  • @zfrenchee for help debugging many issues
  • @lelit for some great bug reports and contributions
  • @mayeut for a phenomenal PR patching Python itself for better compatibility!
  • @czaki for being a super-contributor over many PRs and helping out with countless issues!
  • @mattip for his help with adding PyPy support to cibuildwheel

See also

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.

3.2.1 Oct 12, 2025
3.2.0 Sep 22, 2025
3.1.4 Aug 19, 2025
3.1.3 Aug 01, 2025
3.1.2 Jul 29, 2025
3.1.1 Jul 24, 2025
3.1.0 Jul 24, 2025
3.0.1 Jul 05, 2025
3.0.0 Jun 11, 2025
3.0.0rc3 Jun 11, 2025
3.0.0rc2 Jun 06, 2025
3.0.0rc1 Jun 05, 2025
3.0.0b5 Jun 03, 2025
3.0.0b4 May 29, 2025
3.0.0b3 May 28, 2025
3.0.0b2 May 25, 2025
3.0.0b1 May 19, 2025
2.23.3 Apr 26, 2025
2.23.2 Mar 24, 2025
2.23.1 Mar 15, 2025
2.23.0 Mar 01, 2025
2.22.0 Nov 23, 2024
2.21.3 Oct 09, 2024
2.21.2 Oct 02, 2024
2.21.1 Sep 17, 2024
2.21.0 Sep 13, 2024
2.20.0 Aug 04, 2024
2.19.2 Jul 02, 2024
2.19.1 Jun 13, 2024
2.19.0 Jun 10, 2024
2.18.1 May 20, 2024
2.18.0 May 12, 2024
2.17.0 Mar 11, 2024
2.16.5 Jan 30, 2024
2.16.4 Jan 28, 2024
2.16.3 Jan 26, 2024
2.16.2 Oct 03, 2023
2.16.1 Sep 26, 2023
2.16.0 Sep 18, 2023
2.15.0 Aug 08, 2023
2.14.1 Jul 15, 2023
2.14.0 Jul 10, 2023
2.13.1 Jun 10, 2023
2.13.0 May 28, 2023
2.12.3 Apr 19, 2023
2.12.2 Apr 18, 2023
2.12.1 Mar 11, 2023
2.12.0 Jan 16, 2023
2.11.4 Dec 24, 2022
2.11.3 Dec 05, 2022
2.11.2 Oct 26, 2022
2.11.1 Oct 13, 2022
2.11.0 Oct 13, 2022
2.10.2 Sep 25, 2022
2.10.1 Sep 18, 2022
2.10.0 Sep 13, 2022
2.9.0 Aug 11, 2022
2.8.1 Jul 18, 2022
2.8.0 Jul 05, 2022
2.7.0 Jun 17, 2022
2.6.1 Jun 07, 2022
2.6.0 May 25, 2022
2.5.0 Apr 29, 2022
2.4.0 Apr 02, 2022
2.3.1 Dec 14, 2021
2.3.0 Nov 26, 2021
2.2.2 Oct 26, 2021
2.2.1 Oct 26, 2021
2.2.1b1 Oct 26, 2021
2.2.0 Oct 26, 2021
2.2.0b1 Oct 19, 2021
2.2.0a1 Sep 23, 2021
2.1.3 Oct 06, 2021
2.1.2 Sep 14, 2021
2.1.1 Aug 07, 2021
2.1.0 Aug 07, 2021
2.0.1 Jul 25, 2021
2.0.0 Jul 16, 2021
2.0.0b2 Jul 09, 2021
2.0.0b1 Jul 09, 2021
2.0.0a4 Jun 25, 2021
2.0.0a3 Jun 22, 2021
2.0.0a2 Jun 01, 2021
1.12.0 Jun 22, 2021
1.11.1.post1 May 28, 2021
1.11.1 May 28, 2021
1.11.0 May 01, 2021
1.10.1 May 01, 2021
1.10.0 Feb 23, 2021
1.9.0 Feb 05, 2021
1.8.0 Jan 22, 2021
1.7.4 Jan 02, 2021
1.7.3 Jan 01, 2021
1.7.2 Dec 21, 2020
1.7.1 Dec 03, 2020
1.7.0 Nov 27, 2020
1.6.4 Oct 31, 2020
1.6.3 Oct 12, 2020
1.6.2 Oct 09, 2020
1.6.1 Sep 20, 2020
1.6.0 Sep 09, 2020
1.5.5 Jul 22, 2020
1.5.4 Jul 19, 2020
1.5.3 Jul 19, 2020
1.5.2 Jul 08, 2020
1.5.1 Jun 25, 2020
1.5.0 Jun 24, 2020
1.4.2 May 25, 2020
1.4.1 May 04, 2020
1.4.0 May 02, 2020
1.3.0 Mar 12, 2020
1.2.0 Mar 08, 2020
1.1.0 Dec 07, 2019
1.0.0 Nov 10, 2019
0.12.0 Sep 29, 2019
0.11.1 May 28, 2019
0.11.0 May 27, 2019
0.10.2 Mar 10, 2019
0.10.1 Feb 03, 2019
0.10.0 Sep 23, 2018
0.9.4 Jul 29, 2018
0.9.3 Jul 10, 2018
0.9.2 Jul 01, 2018
0.9.1 Jun 18, 2018
0.9.0 Jun 18, 2018
0.8.0 May 04, 2018
0.7.2 Apr 25, 2018
0.7.1 Apr 02, 2018
0.7.0 Jan 07, 2018
0.6.0 Oct 09, 2017
0.5.1 Sep 10, 2017
0.5.0 Sep 07, 2017
0.4.1 Aug 14, 2017
0.4.0 Jul 23, 2017
0.3.0 Jun 27, 2017
0.2.1 Jun 11, 2017
0.2.0 Apr 17, 2017
0.1.3 Mar 31, 2017
0.1.2 Mar 23, 2017
0.1.0 Mar 19, 2017

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
bashlex (!=0.13)
bracex
build (>=1.0.0)
certifi
dependency-groups (>=1.2)
filelock
humanize
packaging (>=20.9)
patchelf ( or ) and ( or )
platformdirs
pyelftools (>=0.29)
wheel (>=0.33.6)