Skip to content

Commit 97dd4ee

Browse files
committed
Bump version: v1.6.2
1 parent f6eaa9f commit 97dd4ee

11 files changed

+23
-16
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ env:
8585
# Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings
8686

8787
install:
88-
- python3 -m pip install cibuildwheel==1.6.1
88+
- python3 -m pip install cibuildwheel==1.6.2
8989

9090
script:
9191
# build the wheels, put them into './wheelhouse'
@@ -162,6 +162,13 @@ This is similar to static linking, so it might have some licence implications. C
162162
Changelog
163163
=========
164164

165+
### 1.6.2
166+
167+
_9 October 2020_
168+
169+
- ✨ Python 3.9 updated to the final release version - v3.9.0 (#440)
170+
- 🛠 Pypy updated to v7.3.2, adding alpha support for Python 3.7 (#430)
171+
165172
### 1.6.1
166173

167174
_20 September 2020_

cibuildwheel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.6.1'
1+
__version__ = '1.6.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.6.1
15+
install: python -m pip install cibuildwheel==1.6.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
@@ -5,7 +5,7 @@ jobs:
55
- task: UsePythonVersion@0
66
- bash: |
77
python3 -m pip install --upgrade pip
8-
pip3 install cibuildwheel==1.6.1
8+
pip3 install cibuildwheel==1.6.2
99
cibuildwheel --output-dir wheelhouse .
1010
- task: PublishBuildArtifacts@1
1111
inputs: {pathtoPublish: 'wheelhouse'}
@@ -16,7 +16,7 @@ jobs:
1616
- task: UsePythonVersion@0
1717
- bash: |
1818
python3 -m pip install --upgrade pip
19-
pip3 install cibuildwheel==1.6.1
19+
pip3 install cibuildwheel==1.6.2
2020
cibuildwheel --output-dir wheelhouse .
2121
- task: PublishBuildArtifacts@1
2222
inputs: {pathtoPublish: 'wheelhouse'}
@@ -29,7 +29,7 @@ jobs:
2929
displayName: Install Visual C++ for Python 2.7
3030
- bash: |
3131
python -m pip install --upgrade pip
32-
pip install cibuildwheel==1.6.1
32+
pip install cibuildwheel==1.6.2
3333
cibuildwheel --output-dir wheelhouse .
3434
- task: PublishBuildArtifacts@1
3535
inputs: {pathtoPublish: 'wheelhouse'}

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.6.1
14+
pip3 install --user cibuildwheel==1.6.2
1515
cibuildwheel --output-dir wheelhouse
1616
- store_artifacts:
1717
path: wheelhouse/
@@ -26,7 +26,7 @@ jobs:
2626
- run:
2727
name: Build the OS X wheels.
2828
command: |
29-
pip3 install cibuildwheel==1.6.1
29+
pip3 install cibuildwheel==1.6.2
3030
cibuildwheel --output-dir wheelhouse
3131
- store_artifacts:
3232
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.6.1
31+
python -m pip install cibuildwheel==1.6.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.6.1
23+
python -m pip install cibuildwheel==1.6.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
@@ -27,7 +27,7 @@ env:
2727
# Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings
2828

2929
install:
30-
- python3 -m pip install cibuildwheel==1.6.1
30+
- python3 -m pip install cibuildwheel==1.6.2
3131

3232
script:
3333
# build the wheels, put them into './wheelhouse'

examples/travis-ci-minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- ln -s /c/Python38/python.exe /c/Python38/python3.exe
2929

3030
install:
31-
- python3 -m pip install cibuildwheel==1.6.1
31+
- python3 -m pip install cibuildwheel==1.6.2
3232

3333
script:
3434
# 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.6.1
58+
install: python3 -m pip install cibuildwheel==1.6.2
5959
script: python3 -m cibuildwheel --output-dir wheelhouse
6060
after_success: |
6161
python3 -m pip install twine
@@ -67,7 +67,7 @@ jobs:
6767
# PyPy 7.3.2 needs macOS >= 10.14
6868
osx_image: xcode10.2
6969
language: shell
70-
install: python3 -m pip install cibuildwheel==1.6.1
70+
install: python3 -m pip install cibuildwheel==1.6.2
7171
script: python3 -m cibuildwheel --output-dir wheelhouse
7272
after_success: |
7373
python3 -m pip install twine
@@ -77,7 +77,7 @@ jobs:
7777
name: Build and deploy Windows wheels
7878
os: windows
7979
language: shell
80-
install: python3 -m pip install cibuildwheel==1.6.1
80+
install: python3 -m pip install cibuildwheel==1.6.2
8181
script: python3 -m cibuildwheel --output-dir wheelhouse
8282
after_success: |
8383
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.6.1',
14+
version='1.6.2',
1515
install_requires=['bashlex!=0.13', 'toml'],
1616
description="Build Python wheels on CI with minimal configuration.",
1717
long_description=long_description,

0 commit comments

Comments
 (0)