Skip to content

Commit 96e3964

Browse files
committed
Bump version: v1.8.0
1 parent 07f972f commit 96e3964

14 files changed

+41
-20
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
name: Install Python
8282

8383
- name: Install cibuildwheel
84-
run: python -m pip install cibuildwheel==1.7.4
84+
run: python -m pip install cibuildwheel==1.8.0
8585

8686
- name: Build wheels
8787
run: python -m cibuildwheel --output-dir wheelhouse
@@ -303,6 +303,27 @@ Changelog
303303

304304
<!--changelog-start-->
305305

306+
### 1.8.0
307+
308+
_22 January 2021_
309+
310+
- 🌟 Added support for emulated builds! You can now build manylinux wheels on
311+
ARM64`aarch64`, as well as `ppc64le` and 's390x'. To build under emulation,
312+
register QEMU via binfmt_misc and set the
313+
[`CIBW_ARCHS_LINUX`](https://cibuildwheel.readthedocs.io/en/latest/options/#archs)
314+
option to the architectures you want to run. See
315+
[this FAQ entry](https://cibuildwheel.readthedocs.io/en/latest/faq/#emulation)
316+
for more information. (#482)
317+
- ✨ Added `CIBW_TEST_SKIP` option. This allows you to choose certain builds
318+
whose tests you'd like to skip. This might be useful when running a slow
319+
test suite under emulation, for example. (#537)
320+
- ✨ Added `curly-{brace,bracket,paren}` style globbing to `CIBW_BUILD` and
321+
`CIBW_SKIP`. This gives more expressivity, letting you do things like
322+
`CIBW_BUILD=cp39-manylinux_{aarch64,ppc64le}`. (#527)
323+
- 🛠 cibuildwheel will now exit with an error if it's called with options that
324+
skip all builds on a platform. This feature can be disabled by adding
325+
`--allow-empty` on the command line. (#545)
326+
306327
### 1.7.4
307328

308329
_2 January 2021_

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.7.4'
1+
__version__ = '1.8.0'

docs/faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ There are two suggested methods for keeping cibuildwheel up to date that instead
113113
If you use GitHub Actions for builds, you can use cibuildwheel as an action:
114114

115115
```yaml
116-
uses: joerick/cibuildwheel@v1.7.4
116+
uses: joerick/cibuildwheel@v1.8.0
117117
```
118118
119119
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.
@@ -139,7 +139,7 @@ The second option, and the only one that supports other CI systems, is using a `
139139

140140
```bash
141141
# requirements-cibw.txt
142-
cibuildwheel==1.7.4
142+
cibuildwheel==1.8.0
143143
```
144144

145145
Then your install step would have `python -m pip install -r requirements-cibw.txt` in it. Your `dependabot.yml` file could look like this:

docs/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For more info on this file, check out the [docs](https://help.github.com/en/acti
1717

1818
[`examples/github-deploy.yml`](https://github.com/joerick/cibuildwheel/blob/master/examples/github-deploy.yml) extends this minimal example with a demonstration of how to automatically upload the built wheels to PyPI.
1919

20-
You can also use cibuildwheel directly as an action with `uses: joerick/cibuildwheel@v1.7.4`; this combines the download and run steps into a single action, and command line arguments are available via `with:`. This makes it easy to manage cibuildwheel updates via normal actions update mechanisms like dependabot, see [Automatic updates](faq.md#automatic-updates).
20+
You can also use cibuildwheel directly as an action with `uses: joerick/cibuildwheel@v1.8.0`; this combines the download and run steps into a single action, and command line arguments are available via `with:`. This makes it easy to manage cibuildwheel updates via normal actions update mechanisms like dependabot, see [Automatic updates](faq.md#automatic-updates).
2121

2222
# Azure Pipelines [linux/mac/windows] {: #azure-pipelines}
2323

examples/appveyor-minimal.yml

+1-1
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==1.7.4
15+
install: python -m pip install cibuildwheel==1.8.0
1616

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

examples/azure-pipelines-minimal.yml

+3-3
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==1.7.4
9+
pip3 install cibuildwheel==1.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==1.7.4
23+
python3 -m pip install cibuildwheel==1.8.0
2424
displayName: Install dependencies
2525
- bash: cibuildwheel --output-dir wheelhouse .
2626
displayName: Build wheels
@@ -36,7 +36,7 @@ jobs:
3636
- bash: |
3737
set -o errexit
3838
python -m pip install --upgrade pip
39-
pip install cibuildwheel==1.7.4
39+
pip install cibuildwheel==1.8.0
4040
displayName: Install dependencies
4141
- bash: cibuildwheel --output-dir wheelhouse .
4242
displayName: Build wheels

examples/circleci-minimal.yml

+2-2
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==1.7.4
14+
pip3 install --user cibuildwheel==1.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==1.7.4
28+
pip3 install cibuildwheel==1.8.0
2929
cibuildwheel --output-dir wheelhouse
3030
- store_artifacts:
3131
path: wheelhouse/

examples/github-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Install cibuildwheel
3030
run: |
31-
python -m pip install cibuildwheel==1.7.4
31+
python -m pip install cibuildwheel==1.8.0
3232
3333
- name: Install Visual C++ for Python 2.7
3434
if: runner.os == 'Windows'

examples/github-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install cibuildwheel
2222
run: |
23-
python -m pip install cibuildwheel==1.7.4
23+
python -m pip install cibuildwheel==1.8.0
2424
2525
- name: Install Visual C++ for Python 2.7
2626
if: runner.os == 'Windows'

examples/github-with-qemu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install cibuildwheel
2222
run: |
23-
python -m pip install cibuildwheel==1.7.4
23+
python -m pip install cibuildwheel==1.8.0
2424
2525
- name: Install Visual C++ for Python 2.7
2626
if: runner.os == 'Windows'

examples/travis-ci-deploy.yml

+1-1
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==1.7.4
23+
- python3 -m pip install cibuildwheel==1.8.0
2424

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

examples/travis-ci-minimal.yml

+1-1
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==1.7.4
29+
- python3 -m pip install cibuildwheel==1.8.0
3030

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- stage: deploy
5656
name: Build and deploy Linux wheels
5757
services: docker
58-
install: python3 -m pip install cibuildwheel==1.7.4
58+
install: python3 -m pip install cibuildwheel==1.8.0
5959
script: python3 -m cibuildwheel --output-dir wheelhouse
6060
after_success: |
6161
python3 -m pip install twine
@@ -65,7 +65,7 @@ jobs:
6565
name: Build and deploy macOS wheels
6666
os: osx
6767
language: shell
68-
install: python3 -m pip install cibuildwheel==1.7.4
68+
install: python3 -m pip install cibuildwheel==1.8.0
6969
script: python3 -m cibuildwheel --output-dir wheelhouse
7070
after_success: |
7171
python3 -m pip install twine
@@ -75,7 +75,7 @@ jobs:
7575
name: Build and deploy Windows wheels
7676
os: windows
7777
language: shell
78-
install: python3 -m pip install cibuildwheel==1.7.4
78+
install: python3 -m pip install cibuildwheel==1.8.0
7979
script: python3 -m cibuildwheel --output-dir wheelhouse
8080
after_success: |
8181
python3 -m pip install twine

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22

33
name = cibuildwheel
4-
version = 1.7.4
4+
version = 1.8.0
55
description = Build Python wheels on CI with minimal configuration.
66
long_description = file: README.md
77
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)