Skip to content

Commit ed8a953

Browse files
committed
Bump version: v1.7.2
1 parent e439544 commit ed8a953

11 files changed

+26
-16
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
name: Install Python
8181

8282
- name: Install cibuildwheel
83-
run: python -m pip install cibuildwheel==1.7.1
83+
run: python -m pip install cibuildwheel==1.7.2
8484

8585
- name: Build wheels
8686
run: python -m cibuildwheel --output-dir wheelhouse
@@ -261,6 +261,16 @@ Changelog
261261

262262
<!--changelog-start-->
263263

264+
### 1.7.2
265+
266+
_21 December 2020_
267+
268+
- 🛠 Update dependencies, notably wheel==0.36.2 and pip==20.3.3, and CPython to
269+
their latest bugfix releases (#489)
270+
- 📚 Switch to a Github example in the README (#479)
271+
- 📚 Create Working Examples table, with many projects that use cibuildwheel (#474)
272+
- 📚 Import Working Examples table and Changelog to docs
273+
264274
### 1.7.1
265275

266276
_3 December 2020_

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.7.1'
1+
__version__ = '1.7.2'

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.1
15+
install: python -m pip install cibuildwheel==1.7.2
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.1
9+
pip3 install cibuildwheel==1.7.2
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.1
23+
python3 -m pip install cibuildwheel==1.7.2
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.1
39+
pip install cibuildwheel==1.7.2
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.1
14+
pip3 install --user cibuildwheel==1.7.2
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.1
28+
pip3 install cibuildwheel==1.7.2
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.1
31+
python -m pip install cibuildwheel==1.7.2
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.1
23+
python -m pip install cibuildwheel==1.7.2
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.1
23+
- python3 -m pip install cibuildwheel==1.7.2
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.1
29+
- python3 -m pip install cibuildwheel==1.7.2
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.1
58+
install: python3 -m pip install cibuildwheel==1.7.2
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.1
68+
install: python3 -m pip install cibuildwheel==1.7.2
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.1
78+
install: python3 -m pip install cibuildwheel==1.7.2
7979
script: python3 -m cibuildwheel --output-dir wheelhouse
8080
after_success: |
8181
python3 -m pip install twine

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name='cibuildwheel',
14-
version='1.7.1',
14+
version='1.7.2',
1515
install_requires=['bashlex!=0.13', 'toml', 'certifi'],
1616
description="Build Python wheels on CI with minimal configuration.",
1717
long_description=long_description,

0 commit comments

Comments
 (0)