Skip to content

Commit ba8be0d

Browse files
committed
Bump version: v2.18.1
1 parent 90dd476 commit ba8be0d

19 files changed

+51
-35
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- uses: actions/setup-python@v5
9494

9595
- name: Install cibuildwheel
96-
run: python -m pip install cibuildwheel==2.18.0
96+
run: python -m pip install cibuildwheel==2.18.1
9797

9898
- name: Build wheels
9999
run: python -m cibuildwheel --output-dir wheelhouse
@@ -210,6 +210,18 @@ Changelog
210210

211211
<!-- this section was generated by bin/update_readme_changelog.py -- do not edit manually -->
212212

213+
### v2.18.1
214+
215+
- 🌟 Add free-threaded Linux and Windows builds for 3.13. New identifiers `cp313t-*`, new option `CIBW_FREE_THREADED_SUPPORT`/`tool.cibuildwheel.free-threaded-support` required to opt-in. [See the docs](https://cibuildwheel.pypa.io/en/stable/options/#free-threaded-support) for more information. (#1831)
216+
- ✨ The `container-engine` is now a build (non-global) option. (#1792)
217+
- 🛠 The build backend for cibuildwheel is now hatchling. (#1297)
218+
- 🛠 Significant improvements and modernization to our noxfile. (#1823)
219+
- 🛠 Use pylint's new GitHub Actions reporter instead of a custom matcher. (#1823)
220+
- 🛠 Unpin virtualenv updates for Python 3.7+ (#1830)
221+
- 🐛 Fix running linux tests from Windows or macOS ARM. (#1788)
222+
- 📚 Fix our documentation build. (#1821)
223+
224+
213225
### v2.18.0
214226

215227
_12 May 2024_
@@ -258,14 +270,6 @@ _28 January 2024_
258270

259271
- 🛠 Update manylinux pins to upgrade from a problematic PyPy version. (#1737)
260272

261-
### v2.16.3
262-
263-
_26 January 2024_
264-
265-
- 🐛 Fix a bug when building from sdist, where relative paths to files in the package didn't work because the working directory was wrong (#1687)
266-
- 🛠 Adds the ability to disable mounting the host filesystem in containers to `/host`, through the `disable_host_mount` suboption on [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.pypa.io/en/stable/options/#container-engine).
267-
- 📚 A lot of docs improvements! (#1708, #1705, #1686, #1679, #1667, #1665)
268-
269273
<!-- END bin/update_readme_changelog.py -->
270274

271275
---

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import annotations
22

3-
__version__ = "2.18.0"
3+
__version__ = "2.18.1"

docs/changelog.md

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

55
# Changelog
66

7+
### v2.18.1
8+
9+
- 🌟 Add free-threaded Linux and Windows builds for 3.13. New identifiers `cp313t-*`, new option `CIBW_FREE_THREADED_SUPPORT`/`tool.cibuildwheel.free-threaded-support` required to opt-in. [See the docs](https://cibuildwheel.pypa.io/en/stable/options/#free-threaded-support) for more information. (#1831)
10+
- ✨ The `container-engine` is now a build (non-global) option. (#1792)
11+
- 🛠 The build backend for cibuildwheel is now hatchling. (#1297)
12+
- 🛠 Significant improvements and modernization to our noxfile. (#1823)
13+
- 🛠 Use pylint's new GitHub Actions reporter instead of a custom matcher. (#1823)
14+
- 🛠 Unpin virtualenv updates for Python 3.7+ (#1830)
15+
- 🐛 Fix running linux tests from Windows or macOS ARM. (#1788)
16+
- 📚 Fix our documentation build. (#1821)
17+
18+
719
### v2.18.0
820

921
_12 May 2024_

docs/faq.md

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

144144
```yaml
145-
uses: pypa/cibuildwheel@v2.18.0
145+
uses: pypa/cibuildwheel@v2.18.1
146146
```
147147
148148
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.
@@ -164,7 +164,7 @@ The second option, and the only one that supports other CI systems, is using a `
164164

165165
```bash
166166
# requirements-cibw.txt
167-
cibuildwheel==2.18.0
167+
cibuildwheel==2.18.1
168168
```
169169

170170
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:
@@ -328,7 +328,7 @@ Solutions to this vary, but the simplest is to use pipx:
328328
# most runners have pipx preinstalled, but in case you don't
329329
python3 -m pip install pipx
330330
331-
pipx run cibuildwheel==2.18.0 --output-dir wheelhouse
331+
pipx run cibuildwheel==2.18.1 --output-dir wheelhouse
332332
pipx run twine upload wheelhouse/*.whl
333333
```
334334

docs/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
154154
- uses: actions/checkout@v4
155155

156156
- name: Build wheels
157-
run: pipx run cibuildwheel==2.18.0
157+
run: pipx run cibuildwheel==2.18.1
158158

159159
- uses: actions/upload-artifact@v4
160160
with:
@@ -191,7 +191,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
191191
- uses: actions/setup-python@v5
192192

193193
- name: Install cibuildwheel
194-
run: python -m pip install cibuildwheel==2.18.0
194+
run: python -m pip install cibuildwheel==2.18.1
195195

196196
- name: Build wheels
197197
run: python -m cibuildwheel --output-dir wheelhouse

examples/appveyor-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stack: python 3.7
1212
init:
1313
- cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
1414

15-
install: python -m pip install cibuildwheel==2.18.0
15+
install: python -m pip install cibuildwheel==2.18.1
1616

1717
build_script: python -m cibuildwheel --output-dir wheelhouse
1818

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==2.18.0
9+
pip3 install cibuildwheel==2.18.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==2.18.0
23+
python3 -m pip install cibuildwheel==2.18.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==2.18.0
37+
pip install cibuildwheel==2.18.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-
pip3 install --user cibuildwheel==2.18.0
14+
pip3 install --user cibuildwheel==2.18.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==2.18.0
31+
python3 -m pip install --user cibuildwheel==2.18.1
3232
python3 -m cibuildwheel --output-dir wheelhouse
3333
- store_artifacts:
3434
path: wheelhouse/
@@ -42,7 +42,7 @@ jobs:
4242
- run:
4343
name: Build the OS X wheels.
4444
command: |
45-
pip3 install cibuildwheel==2.18.0
45+
pip3 install cibuildwheel==2.18.1
4646
cibuildwheel --output-dir wheelhouse
4747
- store_artifacts:
4848
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==2.18.0
3+
- python -m pip install cibuildwheel==2.18.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==2.18.0
3+
- python -m pip install cibuildwheel==2.18.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
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424

2525
- name: Build wheels
26-
uses: pypa/cibuildwheel@v2.18.0
26+
uses: pypa/cibuildwheel@v2.18.1
2727

2828
- uses: actions/upload-artifact@v4
2929
with:

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Build wheels
18-
uses: pypa/cibuildwheel@v2.18.0
18+
uses: pypa/cibuildwheel@v2.18.1
1919
# env:
2020
# CIBW_SOME_OPTION: value
2121
# ...

examples/github-with-qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
platforms: all
2222

2323
- name: Build wheels
24-
uses: pypa/cibuildwheel@v2.18.0
24+
uses: pypa/cibuildwheel@v2.18.1
2525
env:
2626
# configure cibuildwheel to build native archs ('auto'), and some
2727
# emulated ones

examples/gitlab-minimal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ linux:
1212
DOCKER_TLS_CERTDIR: ""
1313
script:
1414
- curl -sSL https://get.docker.com/ | sh
15-
- python -m pip install cibuildwheel==2.18.0
15+
- python -m pip install cibuildwheel==2.18.1
1616
- cibuildwheel --output-dir wheelhouse
1717
artifacts:
1818
paths:
@@ -23,7 +23,7 @@ windows:
2323
before_script:
2424
- choco install python -y --version 3.8.6
2525
- choco install git.install -y
26-
- py -m pip install cibuildwheel==2.18.0
26+
- py -m pip install cibuildwheel==2.18.1
2727
script:
2828
- py -m cibuildwheel --output-dir wheelhouse --platform windows
2929
artifacts:

examples/gitlab-with-qemu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ linux:
1414
- curl -sSL https://get.docker.com/ | sh
1515
# Warning: This is extremely slow, be careful with how many wheels you build
1616
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
17-
- python -m pip install cibuildwheel==2.18.0
17+
- python -m pip install cibuildwheel==2.18.1
1818
# Assuming your CI runner's default architecture is x86_64...
1919
- cibuildwheel --output-dir wheelhouse --platform linux --archs aarch64
2020
artifacts:

examples/travis-ci-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2121

2222
install:
23-
- python3 -m pip install cibuildwheel==2.18.0
23+
- python3 -m pip install cibuildwheel==2.18.1
2424

2525
script:
2626
# build the wheels, put them into './dist'

examples/travis-ci-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2727

2828
install:
29-
- python3 -m pip install cibuildwheel==2.18.0
29+
- python3 -m pip install cibuildwheel==2.18.1
3030

3131
script:
3232
# build the wheels, put them into './wheelhouse'

examples/travis-ci-test-and-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454
- stage: deploy
5555
name: Build and deploy Linux wheels
5656
services: docker
57-
install: python3 -m pip install cibuildwheel==2.18.0 twine
57+
install: python3 -m pip install cibuildwheel==2.18.1 twine
5858
script: python3 -m cibuildwheel --output-dir wheelhouse
5959
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
6060
# Deploy on windows
6161
- stage: deploy
6262
name: Build and deploy Windows wheels
6363
os: windows
6464
language: shell
65-
install: python3 -m pip install cibuildwheel==2.18.0 twine
65+
install: python3 -m pip install cibuildwheel==2.18.1 twine
6666
script: python3 -m cibuildwheel --output-dir wheelhouse
6767
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
6868

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "cibuildwheel"
7-
version = "2.18.0"
7+
version = "2.18.1"
88
description = "Build Python wheels on CI with minimal configuration."
99
readme = "README.md"
1010
license = "BSD-2-Clause"

0 commit comments

Comments
 (0)