From 8a44027f3d91df7b2c59066c89c3aa0f6630a531 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 7 Aug 2024 21:04:37 -0400 Subject: [PATCH] Update cibuildwheel to version 2.20.0 --- .github/workflows/publishing.yml | 4 ++-- docs/main/changelog.rst | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index 8e4ef27c..2c3f541b 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -65,7 +65,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.3 + uses: pypa/cibuildwheel@v2.20.0 - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl @@ -80,7 +80,7 @@ jobs: if: runner.os == 'Linux' uses: docker/setup-qemu-action@v2 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.3 + uses: pypa/cibuildwheel@v2.20.0 env: CIBW_ARCHS_LINUX: aarch64 - uses: actions/upload-artifact@v3 diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index f4b4b945..f3289210 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -13,6 +13,7 @@ follows `Semantic versioning`_ - Add support of Python 3.12. - Drop support of Python 2.7, 3.5, and 3.6. - Regenerate C sources using Cython 0.29.37. +- Update ``cibuildwheel`` to version ``2.20.0``. 4.41.0 ------