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 ------