Skip to content

Commit 8d2b08b

Browse files
committed
Bump version: v3.4.1
1 parent 54b8a01 commit 8d2b08b

15 files changed

Lines changed: 43 additions & 34 deletions

README.md

Lines changed: 12 additions & 13 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.4.0
102+
run: python -m pip install cibuildwheel==3.4.1
103103

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

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

238+
### v3.4.1
239+
240+
_2 April 2026_
241+
242+
- ⚠️ Building for the experimental CPython 3.13 free-threading variant is now deprecated. That functionality will be removed in the next minor release. The [`enable`](https://cibuildwheel.pypa.io/en/stable/options/#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)
243+
- 🐛 iOS builds will no longer skip `repair-wheel-command` if it's defined in config (#2761)
244+
- 🐛 Fix bug causing `uv` to fail when environments define PYTHON_VERSION or UV_PYTHON, conflicting with our venvs (#2795)
245+
- ✨ cibuildwheel prints the selected build identifiers at the start of the build. (#2785)
246+
- 🔐 The GitHub Action now references other actions with a full SHA (#2744)
247+
238248
### v3.4.0
239249

240250
_5 March 2026_
@@ -274,18 +284,7 @@ _12 October 2025_
274284
- 🐛 Fix the default MACOSX_DEPLOYMENT_TARGET on Python 3.14 (#2613)
275285
- 📚 Docs improvements (#2617)
276286

277-
### v3.2.0
278-
279-
_22 September 2025_
280-
281-
- ✨ Adds GraalPy v25 (Python 3.12) support (#2597)
282-
- 🛠 Update to CPython 3.14.0rc3 (#2602)
283-
- 🛠 Adds CPython 3.14.0 prerelease support for Android, and a number of improvements to Android builds (#2568, #2591)
284-
- 🛠 Improvements to testing on Android, passing environment markers when installing the venv, and providing more debug output when build-verbosity is set (#2575)
285-
- ⚠️ PyPy 3.10 was moved to `pypy-eol` in the `enable` option, as it is now end-of-life. (#2521)
286-
- 📚 Docs improvements (#2574, #2601, #2598)
287-
288-
<!-- [[[end]]] (sum: aO1wNWSgKa) -->
287+
<!-- [[[end]]] (sum: NOLMd9iLDC) -->
289288

290289
---
291290

cibuildwheel/__init__.py

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

docs/changelog.md

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

55
# Changelog
66

7+
### v3.4.1
8+
9+
_2 April 2026_
10+
11+
- ⚠️ Building for the experimental CPython 3.13 free-threading variant is now deprecated. That functionality will be removed in the next minor release. The [`enable`](https://cibuildwheel.pypa.io/en/stable/options/#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)
12+
- 🐛 iOS builds will no longer skip `repair-wheel-command` if it's defined in config (#2761)
13+
- 🐛 Fix bug causing `uv` to fail when environments define PYTHON_VERSION or UV_PYTHON, conflicting with our venvs (#2795)
14+
- ✨ cibuildwheel prints the selected build identifiers at the start of the build. (#2785)
15+
- 🔐 The GitHub Action now references other actions with a full SHA (#2744)
16+
717
### v3.4.0
818

919
_5 March 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.4.0
128+
uses: pypa/cibuildwheel@v3.4.1
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.
@@ -150,7 +150,7 @@ The second option, and the only one that supports other CI systems, is using a `
150150

151151
```bash
152152
# requirements-cibw.txt
153-
cibuildwheel==3.4.0
153+
cibuildwheel==3.4.1
154154
```
155155

156156
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:
@@ -315,7 +315,7 @@ Solutions to this vary, but the simplest is to use pipx:
315315
# most runners have pipx preinstalled, but in case you don't
316316
python3 -m pip install pipx
317317
318-
pipx run cibuildwheel==3.4.0 --output-dir wheelhouse
318+
pipx run cibuildwheel==3.4.1 --output-dir wheelhouse
319319
pipx run twine upload wheelhouse/*.whl
320320
```
321321

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.4.0
9+
pip3 install cibuildwheel==3.4.1
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.4.0
23+
python3 -m pip install cibuildwheel==3.4.1
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.4.0
37+
pip install cibuildwheel==3.4.1
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.4.0
14+
python3 -m pip install --user cibuildwheel==3.4.1
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.4.0
31+
python3 -m pip install --user cibuildwheel==3.4.1
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.4.0
47+
pip3 install cibuildwheel==3.4.1
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.4.0
3+
- python -m pip install cibuildwheel==3.4.1
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.4.0
3+
- python -m pip install cibuildwheel==3.4.1
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.4.0
56+
uses: pypa/cibuildwheel@v3.4.1
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.4.0
20+
uses: pypa/cibuildwheel@v3.4.1
2121
# env:
2222
# CIBW_SOME_OPTION: value
2323
# ...

0 commit comments

Comments
 (0)