Skip to content

Commit aa75342

Browse files
committed
Bump version: v2.6.1
1 parent 45227e5 commit aa75342

17 files changed

Lines changed: 34 additions & 35 deletions

README.md

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

9191
- name: Install cibuildwheel
92-
run: python -m pip install cibuildwheel==2.6.0
92+
run: python -m pip install cibuildwheel==2.6.1
9393

9494
- name: Build wheels
9595
run: python -m cibuildwheel --output-dir wheelhouse
@@ -203,6 +203,12 @@ Changelog
203203

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

206+
### v2.6.1
207+
208+
_7 June 2022_
209+
210+
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
211+
206212
### v2.6.0
207213

208214
_25 May 2022_
@@ -240,19 +246,6 @@ _14 December 2021_
240246
- 🐛 Setting pip options like `PIP_USE_DEPRECATED` in `CIBW_ENVIRONMENT` no longer adversely affects cibuildwheel's ability to set up a Python environment (#956)
241247
- 📚 Docs fixes and improvements
242248

243-
### v2.3.0
244-
245-
_26 November 2021_
246-
247-
- 📈 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)
248-
- ✨ 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)
249-
- ✨ Added support for building PyPy 3.8 wheels. (#881)
250-
- ✨ 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)
251-
- 📚 Improved the deployment documentation (#911)
252-
- 🛠 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)
253-
- 🛠 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)
254-
- 🐛 You can now access the current Python interpreter using `python3` within a build on Windows (#917)
255-
256249
<!-- END bin/update_readme_changelog.py -->
257250

258251
---

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.6.0"
1+
__version__ = "2.6.1"

docs/changelog.md

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

5+
### v2.6.1
6+
7+
_7 June 2022_
8+
9+
- 🛠 Update the prerelease CPython 3.11 to 3.11.0b3
10+
511
### v2.6.0
612

713
_25 May 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/[email protected].0
136+
uses: pypa/[email protected].1
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.
@@ -159,7 +159,7 @@ The second option, and the only one that supports other CI systems, is using a `
159159

160160
```bash
161161
# requirements-cibw.txt
162-
cibuildwheel==2.6.0
162+
cibuildwheel==2.6.1
163163
```
164164

165165
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
@@ -183,7 +183,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
183183
- uses: actions/checkout@v2
184184

185185
- name: Build wheels
186-
run: pipx run cibuildwheel==2.6.0
186+
run: pipx run cibuildwheel==2.6.1
187187

188188
- uses: actions/upload-artifact@v2
189189
with:
@@ -218,7 +218,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
218218
- uses: actions/setup-python@v2
219219

220220
- name: Install cibuildwheel
221-
run: python -m pip install cibuildwheel==2.6.0
221+
run: python -m pip install cibuildwheel==2.6.1
222222

223223
- name: Build wheels
224224
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.6.0
15+
install: python -m pip install cibuildwheel==2.6.1
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.6.0
9+
pip3 install cibuildwheel==2.6.1
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.6.0
23+
python3 -m pip install cibuildwheel==2.6.1
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.6.0
37+
pip install cibuildwheel==2.6.1
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.6.0
14+
pip3 install --user cibuildwheel==2.6.1
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.6.0
28+
pip3 install cibuildwheel==2.6.1
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@v2
1111

1212
- name: Build wheels
13-
uses: pypa/[email protected].0
13+
uses: pypa/[email protected].1
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@v2
2323

2424
- name: Build wheels
25-
uses: pypa/[email protected].0
25+
uses: pypa/[email protected].1
2626

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

0 commit comments

Comments
 (0)