Skip to content

Commit 688c458

Browse files
committed
Bump version: v2.0.0a2
1 parent fa88332 commit 688c458

16 files changed

+23
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/setup-python@v2
8686

8787
- name: Install cibuildwheel
88-
run: python -m pip install cibuildwheel==2.0.0a1
88+
run: python -m pip install cibuildwheel==2.0.0a2
8989

9090
- name: Build wheels
9191
run: python -m cibuildwheel --output-dir wheelhouse
@@ -350,7 +350,7 @@ Changelog
350350

351351
_This release is currently in prerelease. The below release notes will be condensed into a single entry when we do a final release._
352352

353-
_v2.0.0a1 (1 Jun 2021)_
353+
_v2.0.0a2 (1 Jun 2021)_
354354

355355
- 🌟 Added the ability to test building wheels on CPython 3.10! Because CPython 3.10 is in beta, these wheels should not be distributed, because they might not be compatible with the final release, but it's available to build for testing purposes. Use the flag [`--prerelease-pythons` or `CIBW_PRERELEASE_PYTHONS`](https://cibuildwheel.readthedocs.io/en/latest/options/#prerelease-pythons) to test. (#675)
356356
- ✨ Added the ability to build CPython 3.8 wheels on Apple Silicon. (#704)

cibuildwheel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0a1"
1+
__version__ = "2.0.0a2"

docs/faq.md

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

212212
```yaml
213-
uses: pypa/[email protected].0a1
213+
uses: pypa/[email protected].0a2
214214
```
215215
216216
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.
@@ -236,7 +236,7 @@ The second option, and the only one that supports other CI systems, is using a `
236236

237237
```bash
238238
# requirements-cibw.txt
239-
cibuildwheel==2.0.0a1
239+
cibuildwheel==2.0.0a2
240240
```
241241

242242
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
4646
- uses: actions/checkout@v2
4747

4848
- name: Build wheels
49-
run: pipx run cibuildwheel==2.0.0a1
49+
run: pipx run cibuildwheel==2.0.0a2
5050

5151
- uses: actions/upload-artifact@v2
5252
with:
@@ -81,7 +81,7 @@ To build Linux, Mac, and Windows wheels using GitHub Actions, create a `.github/
8181
- uses: actions/setup-python@v2
8282

8383
- name: Install cibuildwheel
84-
run: python -m pip install cibuildwheel==2.0.0a1
84+
run: python -m pip install cibuildwheel==2.0.0a2
8585

8686
- name: Build wheels
8787
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.0.0a1
15+
install: python -m pip install cibuildwheel==2.0.0a2
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.0.0a1
9+
pip3 install cibuildwheel==2.0.0a2
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.0.0a1
23+
python3 -m pip install cibuildwheel==2.0.0a2
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.0.0a1
37+
pip install cibuildwheel==2.0.0a2
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.0.0a1
14+
pip3 install --user cibuildwheel==2.0.0a2
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.0.0a1
28+
pip3 install cibuildwheel==2.0.0a2
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].0a1
13+
uses: pypa/[email protected].0a2
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
@@ -27,7 +27,7 @@ jobs:
2727
python-version: '3.8'
2828

2929
- name: Build wheels
30-
uses: pypa/[email protected].0a1
30+
uses: pypa/[email protected].0a2
3131

3232
- uses: actions/upload-artifact@v2
3333
with:

examples/github-minimal.yml

Lines changed: 1 addition & 1 deletion
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/[email protected].0a1
17+
uses: pypa/[email protected].0a2
1818
# to supply options, put them in 'env', like:
1919
# env:
2020
# CIBW_SOME_OPTION: value

0 commit comments

Comments
 (0)