Skip to content

Commit 84f82a5

Browse files
committed
Bump version: v1.10.0
1 parent 985389d commit 84f82a5

16 files changed

+38
-23
lines changed

README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- uses: actions/setup-python@v2
8787

8888
- name: Install cibuildwheel
89-
run: python -m pip install cibuildwheel==1.9.0
89+
run: python -m pip install cibuildwheel==1.10.0
9090

9191
- name: Build wheels
9292
run: python -m cibuildwheel --output-dir wheelhouse
@@ -313,6 +313,21 @@ Changelog
313313

314314
<!--changelog-start-->
315315

316+
### v1.10.0
317+
318+
_22 Feb 2021_
319+
320+
- ✨ Added `manylinux_2_24` support. To use these new Debian-based manylinux
321+
images, set your [manylinux image](https://cibuildwheel.readthedocs.io/en/stable/options/#manylinux-image)
322+
options to `manylinux_2_24`.
323+
- 🛠 On macOS, we now set `MACOSX_DEPLOYMENT_TARGET` in before running
324+
`CIBW_BEFORE_ALL`. This is useful when using `CIBW_BEFORE_ALL` to build a
325+
shared library.
326+
- 🛠 An empty `CIBW_BUILD` option is now the same as being unset i.e, `*`.
327+
This makes some build matrix configuration easier. (#588)
328+
- 📚 Neatened up documentation - added tabs to a few places (#576), fixed some
329+
formatting issues.
330+
316331
### v1.9.0
317332

318333
_5 February 2021_

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.9.0'
1+
__version__ = '1.10.0'

docs/faq.md

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

207207
```yaml
208-
uses: joerick/cibuildwheel@v1.9.0
208+
uses: joerick/cibuildwheel@v1.10.0
209209
```
210210
211211
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.
@@ -231,7 +231,7 @@ The second option, and the only one that supports other CI systems, is using a `
231231

232232
```bash
233233
# requirements-cibw.txt
234-
cibuildwheel==1.9.0
234+
cibuildwheel==1.10.0
235235
```
236236

237237
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
5050
run: choco install vcpython27 -f -y
5151

5252
- name: Build wheels
53-
run: pipx run cibuildwheel==1.9.0
53+
run: pipx run cibuildwheel==1.10.0
5454

5555
- uses: actions/upload-artifact@v2
5656
with:
@@ -85,7 +85,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
8585
- uses: actions/setup-python@v2
8686

8787
- name: Install cibuildwheel
88-
run: python -m pip install cibuildwheel==1.9.0
88+
run: python -m pip install cibuildwheel==1.10.0
8989

9090
- name: Install Visual C++ for Python 2.7
9191
if: runner.os == 'Windows'

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.9.0
15+
install: python -m pip install cibuildwheel==1.10.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.9.0
9+
pip3 install cibuildwheel==1.10.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.9.0
23+
python3 -m pip install cibuildwheel==1.10.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.9.0
39+
pip install cibuildwheel==1.10.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.9.0
14+
pip3 install --user cibuildwheel==1.10.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.9.0
28+
pip3 install cibuildwheel==1.10.0
2929
cibuildwheel --output-dir wheelhouse
3030
- store_artifacts:
3131
path: wheelhouse/

examples/github-apple-silicon.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111

1212
- name: Build wheels
13-
uses: joerick/cibuildwheel@v1.9.0
13+
uses: joerick/cibuildwheel@v1.10.0
1414
env:
1515
CIBW_ARCHS_MACOS: x86_64 universal2
1616

examples/github-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: choco install vcpython27 -f -y
3232

3333
- name: Build wheels
34-
uses: joerick/cibuildwheel@v1.9.0
34+
uses: joerick/cibuildwheel@v1.10.0
3535

3636
- uses: actions/upload-artifact@v2
3737
with:

examples/github-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: choco install vcpython27 -f -y
1919

2020
- name: Build wheels
21-
uses: joerick/cibuildwheel@v1.9.0
21+
uses: joerick/cibuildwheel@v1.10.0
2222
# to supply options, put them in 'env', like:
2323
# env:
2424
# CIBW_SOME_OPTION: value

examples/github-with-qemu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
platforms: all
3030

3131
- name: Build wheels
32-
uses: joerick/cibuildwheel@v1.9.0
32+
uses: joerick/cibuildwheel@v1.10.0
3333
env:
3434
# configure cibuildwheel to build native archs ('auto'), and some
3535
# emulated ones

examples/gitlab-minimal.yml

+1-1
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==1.9.0
15+
- python -m pip install cibuildwheel==1.10.0
1616
- cibuildwheel --output-dir wheelhouse
1717
artifacts:
1818
paths:

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.9.0
23+
- python3 -m pip install cibuildwheel==1.10.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.9.0
29+
- python3 -m pip install cibuildwheel==1.10.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.9.0
58+
install: python3 -m pip install cibuildwheel==1.10.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.9.0
68+
install: python3 -m pip install cibuildwheel==1.10.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.9.0
78+
install: python3 -m pip install cibuildwheel==1.10.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.9.0
4+
version = 1.10.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)