Skip to content

Commit 0abd6c2

Browse files
committed
Bump version: v2.9.0
1 parent 71cebda commit 0abd6c2

17 files changed

Lines changed: 41 additions & 31 deletions

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,14 @@ What does it do?
2929
| CPython 3.8 ||||| N/A ||||||
3030
| CPython 3.9 ||||| ✅² | ✅³ |||||
3131
| CPython 3.10 ||||| ✅² ||||||
32-
| CPython 3.11 ||||| ✅² ||||||
32+
| CPython 3.11 ||||| ✅² ||||||
3333
| PyPy 3.7 v7.3 || N/A || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
3434
| PyPy 3.8 v7.3 || N/A || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
3535
| PyPy 3.9 v7.3 || N/A || N/A | N/A | ✅¹ | ✅¹ | ✅¹ | N/A | N/A |
3636

3737
<sup>¹ PyPy is only supported for manylinux wheels.</sup><br>
3838
<sup>² Windows arm64 support is experimental.</sup><br>
3939
<sup>³ Alpine 3.14 and very briefly 3.15's default python3 [was not able to load](https://github.com/pypa/cibuildwheel/issues/934) musllinux wheels. This has been fixed; please upgrade the python package if using Alpine from before the fix.</sup><br>
40-
<sup>⁴ CPython 3.11 is built by default using Python 3.11.0rc1, starting with cibuildwheel 2.9.</sup><br>
4140

4241
- Builds manylinux, musllinux, macOS 10.9+, and Windows wheels for CPython and PyPy
4342
- Works on GitHub Actions, Azure Pipelines, Travis CI, AppVeyor, CircleCI, and GitLab CI
@@ -89,7 +88,7 @@ jobs:
8988
- uses: actions/setup-python@v3
9089

9190
- name: Install cibuildwheel
92-
run: python -m pip install cibuildwheel==2.8.1
91+
run: python -m pip install cibuildwheel==2.9.0
9392

9493
- name: Build wheels
9594
run: python -m cibuildwheel --output-dir wheelhouse
@@ -204,6 +203,15 @@ Changelog
204203

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

206+
### v2.9.0
207+
208+
_11 August 2022_
209+
210+
- 🌟 CPython 3.11 wheels are now built by default - without the CIBW_PRERELEASE_PYTHONS flag. It's time to build and upload these wheels to PyPI! This release includes CPython 3.11.0rc1, which is guaranteed to be ABI compatible with the final release. (#1226)
211+
- ⚠️ Removed support for running cibuildwheel in Python 3.6. Python 3.6 is EOL. However, cibuildwheel continues to build CPython 3.6 wheels for the moment. (#1175)
212+
- ✨ Improved error messages when misspelling TOML options, suggesting close matches (#1205)
213+
- 🛠 When running on Apple Silicon (so far, an unsupported mode of operation), cibuildwheel no longer builds universal2 wheels by default - just arm64. See [#1204](https://github.com/pypa/cibuildwheel/issues/1204) for discussion. We hope to release official support for native builds on Apple Silicon soon! (#1217)
214+
207215
### v2.8.1
208216

209217
_18 July 2022_
@@ -241,13 +249,6 @@ _7 June 2022_
241249

242250
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
243251

244-
### v2.6.0
245-
246-
_25 May 2022_
247-
248-
- 🌟 Added the ability to test building wheels on CPython 3.11! Because CPython 3.11 is in beta, these wheels should not be distributed, because they might not be compatible with the final release, but it's available to build for testing purposes. Use the flag [`--prerelease-pythons` or `CIBW_PRERELEASE_PYTHONS`](https://cibuildwheel.readthedocs.io/en/stable/options/#prerelease-pythons) to test. This version of cibuildwheel includes CPython 3.11.0b1. (#1109)
249-
- 📚 Added an interactive diagram showing how cibuildwheel works to the [docs](https://cibuildwheel.readthedocs.io/en/stable/#how-it-works) (#1100)
250-
251252
<!-- END bin/update_readme_changelog.py -->
252253

253254
---

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.8.1"
3+
__version__ = "2.9.0"

docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
title: Changelog
33
---
44

5+
### v2.9.0
6+
7+
_11 August 2022_
8+
9+
- 🌟 CPython 3.11 wheels are now built by default - without the CIBW_PRERELEASE_PYTHONS flag. It's time to build and upload these wheels to PyPI! This release includes CPython 3.11.0rc1, which is guaranteed to be ABI compatible with the final release. (#1226)
10+
- ⚠️ Removed support for running cibuildwheel in Python 3.6. Python 3.6 is EOL. However, cibuildwheel continues to build CPython 3.6 wheels for the moment. (#1175)
11+
- ✨ Improved error messages when misspelling TOML options, suggesting close matches (#1205)
12+
- 🛠 When running on Apple Silicon (so far, an unsupported mode of operation), cibuildwheel no longer builds universal2 wheels by default - just arm64. See [#1204](https://github.com/pypa/cibuildwheel/issues/1204) for discussion. We hope to release official support for native builds on Apple Silicon soon! (#1217)
13+
514
### v2.8.1
615

716
_18 July 2022_

docs/faq.md

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

134134
```yaml
135-
uses: pypa/cibuildwheel@v2.8.1
135+
uses: pypa/cibuildwheel@v2.9.0
136136
```
137137
138138
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.
@@ -154,7 +154,7 @@ The second option, and the only one that supports other CI systems, is using a `
154154

155155
```bash
156156
# requirements-cibw.txt
157-
cibuildwheel==2.8.1
157+
cibuildwheel==2.9.0
158158
```
159159

160160
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:

docs/setup.md

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

184184
- name: Build wheels
185-
run: pipx run cibuildwheel==2.8.1
185+
run: pipx run cibuildwheel==2.9.0
186186

187187
- uses: actions/upload-artifact@v3
188188
with:
@@ -217,7 +217,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
217217
- uses: actions/setup-python@v3
218218

219219
- name: Install cibuildwheel
220-
run: python -m pip install cibuildwheel==2.8.1
220+
run: python -m pip install cibuildwheel==2.9.0
221221

222222
- name: Build wheels
223223
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.8.1
15+
install: python -m pip install cibuildwheel==2.9.0
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.8.1
9+
pip3 install cibuildwheel==2.9.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==2.8.1
23+
python3 -m pip install cibuildwheel==2.9.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==2.8.1
37+
pip install cibuildwheel==2.9.0
3838
displayName: Install dependencies
3939
- bash: cibuildwheel --output-dir wheelhouse .
4040
displayName: Build wheels

examples/circleci-minimal.yml

Lines changed: 2 additions & 2 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.8.1
14+
pip3 install --user cibuildwheel==2.9.0
1515
cibuildwheel --output-dir wheelhouse
1616
- store_artifacts:
1717
path: wheelhouse/
@@ -25,7 +25,7 @@ jobs:
2525
- run:
2626
name: Build the OS X wheels.
2727
command: |
28-
pip3 install cibuildwheel==2.8.1
28+
pip3 install cibuildwheel==2.9.0
2929
cibuildwheel --output-dir wheelhouse
3030
- store_artifacts:
3131
path: wheelhouse/

examples/github-apple-silicon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111

1212
- name: Build wheels
13-
uses: pypa/cibuildwheel@v2.8.1
13+
uses: pypa/cibuildwheel@v2.9.0
1414
env:
1515
CIBW_ARCHS_MACOS: x86_64 arm64
1616

examples/github-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v3
2323

2424
- name: Build wheels
25-
uses: pypa/cibuildwheel@v2.8.1
25+
uses: pypa/cibuildwheel@v2.9.0
2626

2727
- uses: actions/upload-artifact@v3
2828
with:

0 commit comments

Comments
 (0)