From 986e72651f25bcdc83b95afd0ed84673eee9592a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 11:47:47 +0000 Subject: [PATCH 1/2] build(deps): bump pypa/cibuildwheel from 2.21.3 to 2.22.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.21.3 to 2.22.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.21.3...v2.22.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 2 +- .github/workflows/build-upload.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 80c5886..0b5028f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -33,7 +33,7 @@ jobs: submodules: recursive - name: Build wheel - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v2.22.0 env: CIBW_ARCHS: "${{ matrix.archs }}" CIBW_BUILD: "cp312-${{ matrix.build }}*" diff --git a/.github/workflows/build-upload.yml b/.github/workflows/build-upload.yml index 14ca468..44c4251 100644 --- a/.github/workflows/build-upload.yml +++ b/.github/workflows/build-upload.yml @@ -69,7 +69,7 @@ jobs: python-version: 3.8 - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v2.22.0 env: CIBW_ARCHS: "${{ matrix.archs }}" CIBW_BUILD: "${{ matrix.build && '*-' || ''}}${{ matrix.build }}*" From 2938d06ed493463013c6ecd8c00e52b6d668e0f1 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 23 Nov 2024 14:08:16 +0100 Subject: [PATCH 2/2] fix warnings --- .github/workflows/build-upload.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-upload.yml b/.github/workflows/build-upload.yml index 44c4251..a621236 100644 --- a/.github/workflows/build-upload.yml +++ b/.github/workflows/build-upload.yml @@ -73,7 +73,7 @@ jobs: env: CIBW_ARCHS: "${{ matrix.archs }}" CIBW_BUILD: "${{ matrix.build && '*-' || ''}}${{ matrix.build }}*" - CIBW_PRERELEASE_PYTHONS: "${{ !startsWith(github.ref, 'refs/tags/v') }}" + CIBW_ENABLE: "${{ startsWith(github.ref, 'refs/tags/v') && '' || 'cpython-prerelease'}}" - uses: actions/upload-artifact@v4 with: diff --git a/pyproject.toml b/pyproject.toml index e8c5a97..7c67494 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] build-backend = "setuptools.build_meta" [tool.cibuildwheel] -free-threaded-support = true +enable = ["cpython-freethreading", "pypy"] test-requires = "-r requirements-test.txt" test-command = "pytest {project}/tests" test-skip = "*-win_arm64" # silence warnings for windows ARM64