Skip to content

Commit 5ef488b

Browse files
committed
Bump version: v2.8.0
1 parent e035e3a commit 5ef488b

17 files changed

+40
-35
lines changed

README.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- uses: actions/setup-python@v3
9090

9191
- name: Install cibuildwheel
92-
run: python -m pip install cibuildwheel==2.7.0
92+
run: python -m pip install cibuildwheel==2.8.0
9393

9494
- name: Build wheels
9595
run: python -m cibuildwheel --output-dir wheelhouse
@@ -204,6 +204,15 @@ Changelog
204204

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

207+
### v2.8.0
208+
209+
_5 July 2022_
210+
211+
- ✨ You can now run cibuildwheel on Podman, as an alternate container engine to Docker, which remains the default. This is useful in environments where a Docker daemon isn't available, for example, it can be run inside a Docker container, or without root access. To use Podman, set the [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine) option. (#966)
212+
- ✨ Adds support for building `py3-none-{platform}` wheels. These wheels contain native extension code, but don't use the Python APIs. Typically, they're bridged to Python using a FFI module like [ctypes](https://docs.python.org/3/library/ctypes.html) or [cffi](https://cffi.readthedocs.io/en/latest/). Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions. Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151)
213+
- 🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152)
214+
- 📚 A few docs improvements and updates to keep things up-to-date.
215+
207216
### v2.7.0
208217

209218
_17 June 2022_
@@ -236,19 +245,6 @@ _29 April 2022_
236245
- 🐛 Workaround a permissions issue on Linux relating to newer versions of git and setuptools_scm (#1095)
237246
- 📚 Minor docs improvements
238247

239-
### v2.4.0
240-
241-
_2 April 2022_
242-
243-
- ✨ cibuildwheel now supports running locally on Windows and macOS (as well as Linux). On macOS, you'll have to install the versions of Pythons that you want to use from Python.org, and cibuildwheel will use them. On Windows, cibuildwheel will install it's own versions of Python. Check out [the documentation](https://cibuildwheel.readthedocs.io/en/stable/setup/#local) for instructions. (#974)
244-
- ✨ Added support for building PyPy 3.9 wheels. (#1031)
245-
- ✨ Listing at the end of the build now displays the size of each wheel (#975)
246-
- 🐛 Workaround a connection timeout bug on Travis CI ppc64le runners (#906)
247-
- 🐛 Fix an encoding error when reading setup.py in the wrong encoding (#977)
248-
- 🛠 Setuptools updated to 61.3.0, including experimental support for reading config from pyproject.toml(PEP 621). This could change the behaviour of your build if you have a pyproject.toml with a `[project]` table, because that takes precedence over setup.py and setup.cfg. Check out the [setuptools docs](https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html) and the [project metadata specification](https://packaging.python.org/en/latest/specifications/declaring-project-metadata/) for more info.
249-
- 🛠 Many other dependency updates.
250-
- 📚 Minor docs improvements
251-
252248
<!-- END bin/update_readme_changelog.py -->
253249

254250
---

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.7.0"
1+
__version__ = "2.8.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.8.0
6+
7+
_5 July 2022_
8+
9+
- ✨ You can now run cibuildwheel on Podman, as an alternate container engine to Docker, which remains the default. This is useful in environments where a Docker daemon isn't available, for example, it can be run inside a Docker container, or without root access. To use Podman, set the [`CIBW_CONTAINER_ENGINE`](https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine) option. (#966)
10+
- ✨ Adds support for building `py3-none-{platform}` wheels. These wheels contain native extension code, but don't use the Python APIs. Typically, they're bridged to Python using a FFI module like [ctypes](https://docs.python.org/3/library/ctypes.html) or [cffi](https://cffi.readthedocs.io/en/latest/). Because they don't use Python ABI, the wheels are more compatible - they work across many Python versions. Check out this [example ctypes project](https://github.com/joerick/python-ctypes-package-sample) to see an example of how it works. (#1151)
11+
- 🛠 cibuildwheel will now error if multiple builds in a single run produce the same wheel filename, as this indicates a misconfiguration. (#1152)
12+
- 📚 A few docs improvements and updates to keep things up-to-date.
13+
514
### v2.7.0
615

716
_17 June 2022_

docs/faq.md

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

135135
```yaml
136-
uses: pypa/cibuildwheel@v2.7.0
136+
uses: pypa/cibuildwheel@v2.8.0
137137
```
138138
139139
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.
@@ -155,7 +155,7 @@ The second option, and the only one that supports other CI systems, is using a `
155155

156156
```bash
157157
# requirements-cibw.txt
158-
cibuildwheel==2.7.0
158+
cibuildwheel==2.8.0
159159
```
160160

161161
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.7.0
185+
run: pipx run cibuildwheel==2.8.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.7.0
220+
run: python -m pip install cibuildwheel==2.8.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.7.0
15+
install: python -m pip install cibuildwheel==2.8.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.7.0
9+
pip3 install cibuildwheel==2.8.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.7.0
23+
python3 -m pip install cibuildwheel==2.8.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.7.0
37+
pip install cibuildwheel==2.8.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.7.0
14+
pip3 install --user cibuildwheel==2.8.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.7.0
28+
pip3 install cibuildwheel==2.8.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.7.0
13+
uses: pypa/cibuildwheel@v2.8.0
1414
env:
1515
CIBW_ARCHS_MACOS: x86_64 universal2
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.7.0
25+
uses: pypa/cibuildwheel@v2.8.0
2626

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

0 commit comments

Comments
 (0)