From 1e164977767dcd3f532555fb7c30f0d1197a1295 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 12 Oct 2020 21:05:20 +0100 Subject: [PATCH] Bump version: v1.6.3 --- README.md | 9 ++++++++- cibuildwheel/__init__.py | 2 +- examples/appveyor-minimal.yml | 2 +- examples/azure-pipelines-minimal.yml | 6 +++--- examples/circleci-minimal.yml | 4 ++-- examples/github-deploy.yml | 2 +- examples/github-minimal.yml | 2 +- examples/travis-ci-deploy.yml | 2 +- examples/travis-ci-minimal.yml | 2 +- examples/travis-ci-test-and-deploy.yml | 6 +++--- setup.py | 2 +- 11 files changed, 23 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 4fecf5b2..0c8be12f 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ env: # Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings install: - - python3 -m pip install cibuildwheel==1.6.2 + - python3 -m pip install cibuildwheel==1.6.3 script: # 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 Changelog ========= +### 1.6.3 + +_12 October 2020_ + +- 🐛 Fix missing SSL certificates on macOS (#447) +- 🛠 Update OpenSSL Python 3.5 patch to 1.1.1h on macOS (#449) + ### 1.6.2 _9 October 2020_ diff --git a/cibuildwheel/__init__.py b/cibuildwheel/__init__.py index 4a9b9788..4574cc89 100644 --- a/cibuildwheel/__init__.py +++ b/cibuildwheel/__init__.py @@ -1 +1 @@ -__version__ = '1.6.2' +__version__ = '1.6.3' diff --git a/examples/appveyor-minimal.yml b/examples/appveyor-minimal.yml index 1f1f3b95..ed59f784 100644 --- a/examples/appveyor-minimal.yml +++ b/examples/appveyor-minimal.yml @@ -12,7 +12,7 @@ stack: python 3.7 init: - cmd: set PATH=C:\Python37;C:\Python37\Scripts;%PATH% -install: python -m pip install cibuildwheel==1.6.2 +install: python -m pip install cibuildwheel==1.6.3 build_script: python -m cibuildwheel --output-dir wheelhouse diff --git a/examples/azure-pipelines-minimal.yml b/examples/azure-pipelines-minimal.yml index e24273a5..8d5ceaf6 100644 --- a/examples/azure-pipelines-minimal.yml +++ b/examples/azure-pipelines-minimal.yml @@ -5,7 +5,7 @@ jobs: - task: UsePythonVersion@0 - bash: | python3 -m pip install --upgrade pip - pip3 install cibuildwheel==1.6.2 + pip3 install cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} @@ -16,7 +16,7 @@ jobs: - task: UsePythonVersion@0 - bash: | python3 -m pip install --upgrade pip - pip3 install cibuildwheel==1.6.2 + pip3 install cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} @@ -29,7 +29,7 @@ jobs: displayName: Install Visual C++ for Python 2.7 - bash: | python -m pip install --upgrade pip - pip install cibuildwheel==1.6.2 + pip install cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} diff --git a/examples/circleci-minimal.yml b/examples/circleci-minimal.yml index 9b698d19..71f38a84 100644 --- a/examples/circleci-minimal.yml +++ b/examples/circleci-minimal.yml @@ -11,7 +11,7 @@ jobs: - run: name: Build the Linux wheels. command: | - pip3 install --user cibuildwheel==1.6.2 + pip3 install --user cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse - store_artifacts: path: wheelhouse/ @@ -26,7 +26,7 @@ jobs: - run: name: Build the OS X wheels. command: | - pip3 install cibuildwheel==1.6.2 + pip3 install cibuildwheel==1.6.3 cibuildwheel --output-dir wheelhouse - store_artifacts: path: wheelhouse/ diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index 4c00cff8..26b0502d 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -28,7 +28,7 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install cibuildwheel==1.6.2 + python -m pip install cibuildwheel==1.6.3 - name: Install Visual C++ for Python 2.7 if: runner.os == 'Windows' diff --git a/examples/github-minimal.yml b/examples/github-minimal.yml index 160bd868..ad331c8c 100644 --- a/examples/github-minimal.yml +++ b/examples/github-minimal.yml @@ -20,7 +20,7 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install cibuildwheel==1.6.2 + python -m pip install cibuildwheel==1.6.3 - name: Install Visual C++ for Python 2.7 if: runner.os == 'Windows' diff --git a/examples/travis-ci-deploy.yml b/examples/travis-ci-deploy.yml index 9b9fcb96..247b52e4 100644 --- a/examples/travis-ci-deploy.yml +++ b/examples/travis-ci-deploy.yml @@ -27,7 +27,7 @@ env: # Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings install: - - python3 -m pip install cibuildwheel==1.6.2 + - python3 -m pip install cibuildwheel==1.6.3 script: # build the wheels, put them into './wheelhouse' diff --git a/examples/travis-ci-minimal.yml b/examples/travis-ci-minimal.yml index 30df8298..e5130f0e 100644 --- a/examples/travis-ci-minimal.yml +++ b/examples/travis-ci-minimal.yml @@ -28,7 +28,7 @@ jobs: - ln -s /c/Python38/python.exe /c/Python38/python3.exe install: - - python3 -m pip install cibuildwheel==1.6.2 + - python3 -m pip install cibuildwheel==1.6.3 script: # build the wheels, put them into './wheelhouse' diff --git a/examples/travis-ci-test-and-deploy.yml b/examples/travis-ci-test-and-deploy.yml index 8fc19cbd..294ed2b8 100644 --- a/examples/travis-ci-test-and-deploy.yml +++ b/examples/travis-ci-test-and-deploy.yml @@ -55,7 +55,7 @@ jobs: - stage: deploy name: Build and deploy Linux wheels services: docker - install: python3 -m pip install cibuildwheel==1.6.2 + install: python3 -m pip install cibuildwheel==1.6.3 script: python3 -m cibuildwheel --output-dir wheelhouse after_success: | python3 -m pip install twine @@ -67,7 +67,7 @@ jobs: # PyPy 7.3.2 needs macOS >= 10.14 osx_image: xcode10.2 language: shell - install: python3 -m pip install cibuildwheel==1.6.2 + install: python3 -m pip install cibuildwheel==1.6.3 script: python3 -m cibuildwheel --output-dir wheelhouse after_success: | python3 -m pip install twine @@ -77,7 +77,7 @@ jobs: name: Build and deploy Windows wheels os: windows language: shell - install: python3 -m pip install cibuildwheel==1.6.2 + install: python3 -m pip install cibuildwheel==1.6.3 script: python3 -m cibuildwheel --output-dir wheelhouse after_success: | python3 -m pip install twine diff --git a/setup.py b/setup.py index 4f695237..ee11c393 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ long_description = (this_directory / 'README.md').read_text(encoding='utf-8') setup( name='cibuildwheel', - version='1.6.2', + version='1.6.3', install_requires=['bashlex!=0.13', 'toml'], description="Build Python wheels on CI with minimal configuration.", long_description=long_description,