Skip to content

Commit f717468

Browse files
committed
Bump version: v2.3.0
1 parent 7b223b4 commit f717468

17 files changed

+48
-30
lines changed

README.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- uses: actions/setup-python@v2
8888

8989
- name: Install cibuildwheel
90-
run: python -m pip install cibuildwheel==2.2.2
90+
run: python -m pip install cibuildwheel==2.3.0
9191

9292
- name: Build wheels
9393
run: python -m cibuildwheel --output-dir wheelhouse
@@ -192,6 +192,19 @@ Changelog
192192

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

195+
### v2.3.0
196+
197+
_26 November 2021_
198+
199+
- 📈 cibuildwheel now defaults to manylinux2014 image for linux builds, rather than manylinux2010. If you want to stick with manylinux2010, it's simple to set this using [the image options](https://cibuildwheel.readthedocs.io/en/stable/options/#linux-image). (#926)
200+
- ✨ You can now pass environment variables from the host machine into the Docker container during a Linux build. Check out [the docs for `CIBW_ENVIRONMENT_PASS_LINUX `](https://cibuildwheel.readthedocs.io/en/latest/options/#environment-pass) for the details. (#914)
201+
- ✨ Added support for building PyPy 3.8 wheels. (#881)
202+
- ✨ Added support for building Windows arm64 CPython wheels on a Windows arm64 runner. We can't test this in CI yet, so for now, this is experimental. (#920)
203+
- 📚 Improved the deployment documentation (#911)
204+
- 🛠 Changed the escaping behaviour inside cibuildwheel's option placeholders e.g. `{project}` in `before_build` or `{dest_dir}` in `repair_wheel_command`. This allows bash syntax like `${SOME_VAR}` to passthrough without being interpreted as a placeholder by cibuildwheel. See [this section](https://cibuildwheel.readthedocs.io/en/stable/options/#placeholders) in the docs for more info. (#889)
205+
- 🛠 Pip updated to 21.3, meaning it now defaults to in-tree builds again. If this causes an issue with your project, setting environment variable `PIP_USE_DEPRECATED=out-of-tree-build` is available as a temporary flag to restore the old behaviour. However, be aware that this flag will probably be removed soon. (#881)
206+
- 🐛 You can now access the current Python interpreter using `python3` within a build on Windows (#917)
207+
195208
### v2.2.2
196209

197210
_26 October 2021_
@@ -231,14 +244,6 @@ _6 October 2021_
231244

232245
- 🛠 Updated CPython 3.10 to the 3.10.0 final release
233246

234-
### v2.1.2
235-
236-
_14 September 2021_
237-
238-
- 🛠 Updated CPython 3.10 to 3.10.0rc2
239-
- 📚 Multiple docs updates
240-
- 🐛 Improved warnings when built binaries are bundled into the container on Linux. (#807)
241-
242247
<!-- END bin/update_readme_changelog.py -->
243248

244249
---

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.2"
1+
__version__ = "2.3.0"

docs/changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
title: Changelog
33
---
44

5+
### v2.3.0
6+
7+
_26 November 2021_
8+
9+
- 📈 cibuildwheel now defaults to manylinux2014 image for linux builds, rather than manylinux2010. If you want to stick with manylinux2010, it's simple to set this using [the image options](https://cibuildwheel.readthedocs.io/en/stable/options/#linux-image). (#926)
10+
- ✨ You can now pass environment variables from the host machine into the Docker container during a Linux build. Check out [the docs for `CIBW_ENVIRONMENT_PASS_LINUX `](https://cibuildwheel.readthedocs.io/en/latest/options/#environment-pass) for the details. (#914)
11+
- ✨ Added support for building PyPy 3.8 wheels. (#881)
12+
- ✨ Added support for building Windows arm64 CPython wheels on a Windows arm64 runner. We can't test this in CI yet, so for now, this is experimental. (#920)
13+
- 📚 Improved the deployment documentation (#911)
14+
- 🛠 Changed the escaping behaviour inside cibuildwheel's option placeholders e.g. `{project}` in `before_build` or `{dest_dir}` in `repair_wheel_command`. This allows bash syntax like `${SOME_VAR}` to passthrough without being interpreted as a placeholder by cibuildwheel. See [this section](https://cibuildwheel.readthedocs.io/en/stable/options/#placeholders) in the docs for more info. (#889)
15+
- 🛠 Pip updated to 21.3, meaning it now defaults to in-tree builds again. If this causes an issue with your project, setting environment variable `PIP_USE_DEPRECATED=out-of-tree-build` is available as a temporary flag to restore the old behaviour. However, be aware that this flag will probably be removed soon. (#881)
16+
- 🐛 You can now access the current Python interpreter using `python3` within a build on Windows (#917)
17+
518
### v2.2.2
619

720
_26 October 2021_

docs/faq.md

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

129129
```yaml
130-
uses: pypa/cibuildwheel@v2.2.2
130+
uses: pypa/cibuildwheel@v2.3.0
131131
```
132132
133133
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.
@@ -153,7 +153,7 @@ The second option, and the only one that supports other CI systems, is using a `
153153

154154
```bash
155155
# requirements-cibw.txt
156-
cibuildwheel==2.2.2
156+
cibuildwheel==2.3.0
157157
```
158158

159159
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
118118
- uses: actions/checkout@v2
119119

120120
- name: Build wheels
121-
run: pipx run cibuildwheel==2.2.2
121+
run: pipx run cibuildwheel==2.3.0
122122

123123
- uses: actions/upload-artifact@v2
124124
with:
@@ -153,7 +153,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
153153
- uses: actions/setup-python@v2
154154

155155
- name: Install cibuildwheel
156-
run: python -m pip install cibuildwheel==2.2.2
156+
run: python -m pip install cibuildwheel==2.3.0
157157

158158
- name: Build wheels
159159
run: python -m cibuildwheel --output-dir wheelhouse

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==2.2.2
15+
install: python -m pip install cibuildwheel==2.3.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==2.2.2
9+
pip3 install cibuildwheel==2.3.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.2.2
23+
python3 -m pip install cibuildwheel==2.3.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.2.2
37+
pip install cibuildwheel==2.3.0
3838
displayName: Install dependencies
3939
- bash: cibuildwheel --output-dir wheelhouse .
4040
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==2.2.2
14+
pip3 install --user cibuildwheel==2.3.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.2.2
28+
pip3 install cibuildwheel==2.3.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: pypa/cibuildwheel@v2.2.2
13+
uses: pypa/cibuildwheel@v2.3.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
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v2
2323

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

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

examples/github-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515

1616
- name: Build wheels
17-
uses: pypa/cibuildwheel@v2.2.2
17+
uses: pypa/cibuildwheel@v2.3.0
1818
# to supply options, put them in 'env', like:
1919
# env:
2020
# CIBW_SOME_OPTION: value

examples/github-with-qemu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
platforms: all
2626

2727
- name: Build wheels
28-
uses: pypa/cibuildwheel@v2.2.2
28+
uses: pypa/cibuildwheel@v2.3.0
2929
env:
3030
# configure cibuildwheel to build native archs ('auto'), and some
3131
# 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==2.2.2
15+
- python -m pip install cibuildwheel==2.3.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
@@ -19,7 +19,7 @@ jobs:
1919
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2020

2121
install:
22-
- python3 -m pip install cibuildwheel==2.2.2
22+
- python3 -m pip install cibuildwheel==2.3.0
2323

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

examples/travis-ci-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2626

2727
install:
28-
- python3 -m pip install cibuildwheel==2.2.2
28+
- python3 -m pip install cibuildwheel==2.3.0
2929

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

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555
- stage: deploy
5656
name: Build and deploy Linux wheels
5757
services: docker
58-
install: python3 -m pip install cibuildwheel==2.2.2 twine
58+
install: python3 -m pip install cibuildwheel==2.3.0 twine
5959
script: python3 -m cibuildwheel --output-dir wheelhouse
6060
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
6161
# Deploy on windows
6262
- stage: deploy
6363
name: Build and deploy Windows wheels
6464
os: windows
6565
language: shell
66-
install: python3 -m pip install cibuildwheel==2.2.2 twine
66+
install: python3 -m pip install cibuildwheel==2.3.0 twine
6767
script: python3 -m cibuildwheel --output-dir wheelhouse
6868
after_success: python3 -m twine upload --skip-existing wheelhouse/*.whl
6969

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = cibuildwheel
3-
version = 2.2.2
3+
version = 2.3.0
44
description = Build Python wheels on CI with minimal configuration.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)