Skip to content

Commit ee02a15

Browse files
committed
Bump version: v3.4.0
1 parent f08ce70 commit ee02a15

15 files changed

+45
-41
lines changed

README.md

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- uses: actions/setup-python@v6
100100

101101
- name: Install cibuildwheel
102-
run: python -m pip install cibuildwheel==3.3.1
102+
run: python -m pip install cibuildwheel==3.4.0
103103

104104
- name: Build wheels
105105
run: python -m cibuildwheel --output-dir wheelhouse
@@ -235,6 +235,17 @@ Changelog
235235

236236
<!-- [[[cog from readme_changelog import mini_changelog; print(mini_changelog()) ]]] -->
237237

238+
### v3.4.0
239+
240+
_5 March 2026_
241+
242+
- 🌟 You can now build wheels using `uv` as a build frontend. This should improve performance, especially if your project has lots of build dependencies. To use, set [`build-frontend`](https://cibuildwheel.pypa.io/en/stable/options/#build-frontend) to `uv`. (#2322)
243+
- ⚠️ We no longer support running on Travis CI. It may continue working but we don't run tests there anymore so we can't be sure. (#2682)
244+
- ✨ Improvements to building rust wheels on Android (#2650)
245+
- 🐛 Fix bug with the GitHub Action on Windows, where PATH was getting unnecessarily changed, causing issues with meson builds. (#2723)
246+
- ✨ Add support for quiet setting on `build` and `uv` from the cibuildwheel `build-verbosity` setting.
247+
- 📚 Docs updates, including guidance on using Meson on Windows (#2718)
248+
238249
### v3.3.1
239250

240251
_5 January 2026_
@@ -274,25 +285,7 @@ _22 September 2025_
274285
- ⚠️ PyPy 3.10 was moved to `pypy-eol` in the `enable` option, as it is now end-of-life. (#2521)
275286
- 📚 Docs improvements (#2574, #2601, #2598)
276287

277-
### v3.1.4
278-
279-
_19 August 2025_
280-
281-
- ✨ Add a `--clean-cache` command to clean up our cache (#2489)
282-
- 🛠 Update Python to 3.14rc2 and other patch version bumps (#2542, #2556)
283-
- 🛠 Update Pyodide to 0.28.2 (#2562, #2558)
284-
- 🐛 Fix resolution with `pyodide-build` when `dependency-versions` is set (#2548)
285-
- 🐛 Set `CMAKE_FIND_ROOT_PATH_MODE_PACKAGE` to `BOTH` on Android (#2547)
286-
- 🐛 Add `patchelf` dependency for platforms that can build Android wheels (#2552)
287-
- 🐛 Ignore empty values for `CIBW_ARCHS` like most other environment variables (#2541)
288-
- 💼 The `color` and `suggest_on_error` argparse options are now default in 3.14rc1+ (#2554)
289-
- 💼 Use the virtualenv release URL instead of blob URL (should be more robust) (#2555)
290-
- 🧪 For iOS, lowering to macos-14 is needed for now due to issues with GitHub's runner images (#2557)
291-
- 🧪 Split out platforms iOS and Android in our tests (#2519)
292-
- 🧪 Fix and enable doctests (#2546)
293-
- 📚 Improve our docs on free-threading (#2549)
294-
295-
<!-- [[[end]]] (sum: PDe+dJWkRl) -->
288+
<!-- [[[end]]] (sum: rvgewG/d2N) -->
296289

297290
---
298291

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.3.1"
1+
__version__ = "3.4.0"

docs/changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ title: Changelog
44

55
# Changelog
66

7+
### v3.4.0
8+
9+
_5 March 2026_
10+
11+
- 🌟 You can now build wheels using `uv` as a build frontend. This should improve performance, especially if your project has lots of build dependencies. To use, set [`build-frontend`](https://cibuildwheel.pypa.io/en/stable/options/#build-frontend) to `uv`. (#2322)
12+
- ⚠️ We no longer support running on Travis CI. It may continue working but we don't run tests there anymore so we can't be sure. (#2682)
13+
- ✨ Improvements to building rust wheels on Android (#2650)
14+
- 🐛 Fix bug with the GitHub Action on Windows, where PATH was getting unnecessarily changed, causing issues with meson builds. (#2723)
15+
- ✨ Add support for quiet setting on `build` and `uv` from the cibuildwheel `build-verbosity` setting.
16+
- 📚 Docs updates, including guidance on using Meson on Windows (#2718)
17+
718
### v3.3.1
819

920
_5 January 2026_

docs/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ There are two suggested methods for keeping cibuildwheel up to date that instead
125125
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
126126

127127
```yaml
128-
uses: pypa/cibuildwheel@v3.3.1
128+
uses: pypa/cibuildwheel@v3.4.0
129129
```
130130

131131
This is a composite step that just runs cibuildwheel using pipx. You can set command-line options as `with:` parameters, and use `env:` as normal.
@@ -147,7 +147,7 @@ The second option, and the only one that supports other CI systems, is using a `
147147

148148
```bash
149149
# requirements-cibw.txt
150-
cibuildwheel==3.3.1
150+
cibuildwheel==3.4.0
151151
```
152152

153153
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `.github/dependabot.yml` file could look like this:
@@ -312,7 +312,7 @@ Solutions to this vary, but the simplest is to use pipx:
312312
# most runners have pipx preinstalled, but in case you don't
313313
python3 -m pip install pipx
314314
315-
pipx run cibuildwheel==3.3.1 --output-dir wheelhouse
315+
pipx run cibuildwheel==3.4.0 --output-dir wheelhouse
316316
pipx run twine upload wheelhouse/*.whl
317317
```
318318

examples/azure-pipelines-minimal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- bash: |
77
set -o errexit
88
python3 -m pip install --upgrade pip
9-
pip3 install cibuildwheel==3.3.1
9+
pip3 install cibuildwheel==3.4.0
1010
displayName: Install dependencies
1111
- bash: cibuildwheel --output-dir wheelhouse .
1212
displayName: Build wheels
@@ -20,7 +20,7 @@ jobs:
2020
- bash: |
2121
set -o errexit
2222
python3 -m pip install --upgrade pip
23-
python3 -m pip install cibuildwheel==3.3.1
23+
python3 -m pip install cibuildwheel==3.4.0
2424
displayName: Install dependencies
2525
- bash: cibuildwheel --output-dir wheelhouse .
2626
displayName: Build wheels
@@ -34,7 +34,7 @@ jobs:
3434
- bash: |
3535
set -o errexit
3636
python -m pip install --upgrade pip
37-
pip install cibuildwheel==3.3.1
37+
pip install cibuildwheel==3.4.0
3838
displayName: Install dependencies
3939
- bash: cibuildwheel --output-dir wheelhouse .
4040
displayName: Build wheels

examples/circleci-minimal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run:
1212
name: Build the Linux wheels.
1313
command: |
14-
python3 -m pip install --user cibuildwheel==3.3.1
14+
python3 -m pip install --user cibuildwheel==3.4.0
1515
cibuildwheel --output-dir wheelhouse
1616
- store_artifacts:
1717
path: wheelhouse/
@@ -28,7 +28,7 @@ jobs:
2828
- run:
2929
name: Build the Linux aarch64 wheels.
3030
command: |
31-
python3 -m pip install --user cibuildwheel==3.3.1
31+
python3 -m pip install --user cibuildwheel==3.4.0
3232
python3 -m cibuildwheel --output-dir wheelhouse
3333
- store_artifacts:
3434
path: wheelhouse/
@@ -44,7 +44,7 @@ jobs:
4444
name: Build the OS X wheels.
4545
command: |
4646
sudo softwareupdate --install-rosetta --agree-to-license # for python<=3.8 or x86_64/universal2 tests
47-
pip3 install cibuildwheel==3.3.1
47+
pip3 install cibuildwheel==3.4.0
4848
cibuildwheel --output-dir wheelhouse
4949
- store_artifacts:
5050
path: wheelhouse/

examples/cirrus-ci-intel-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
22
install_cibuildwheel_script:
3-
- python -m pip install cibuildwheel==3.3.1
3+
- python -m pip install cibuildwheel==3.4.0
44
run_cibuildwheel_script:
55
- cibuildwheel
66
wheels_artifacts:

examples/cirrus-ci-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
build_and_store_wheels: &BUILD_AND_STORE_WHEELS
22
install_cibuildwheel_script:
3-
- python -m pip install cibuildwheel==3.3.1
3+
- python -m pip install cibuildwheel==3.4.0
44
run_cibuildwheel_script:
55
- cibuildwheel
66
wheels_artifacts:

examples/github-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
persist-credentials: false
5454

5555
- name: Build wheels
56-
uses: pypa/cibuildwheel@v3.3.1
56+
uses: pypa/cibuildwheel@v3.4.0
5757
env:
5858
CIBW_PLATFORM: ${{ matrix.platform || 'auto' }}
5959
CIBW_ARCHS: ${{ matrix.archs || 'auto' }}

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
persist-credentials: false
1818

1919
- name: Build wheels
20-
uses: pypa/cibuildwheel@v3.3.1
20+
uses: pypa/cibuildwheel@v3.4.0
2121
# env:
2222
# CIBW_SOME_OPTION: value
2323
# ...

0 commit comments

Comments
 (0)