From c41ccf5a3b14570862e8046ba266eb162c770270 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 07:18:35 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.19.2 to 2.20.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.19.2...v2.20.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c0e64442..1ba951f2f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -211,7 +211,7 @@ jobs: xcode-version: latest-stable - name: Build wheels - uses: pypa/cibuildwheel@v2.19.2 + uses: pypa/cibuildwheel@v2.20.0 # GitHub Actions specific build parameters env: # pass GitHub runner info into Linux container From 9380170e1531d0341fb5482d61bac4a211683ff4 Mon Sep 17 00:00:00 2001 From: Martijn Govers Date: Tue, 6 Aug 2024 09:23:46 +0200 Subject: [PATCH 2/2] skip python 3.13 in CI due to numpy support Signed-off-by: Martijn Govers --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ccb4cfacb..b72dcefff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -107,7 +107,8 @@ test-command = "pytest {package}/tests" # we do not support # PyPy # musllinux in aarch64 -skip = ["pp*", "*-musllinux_aarch64"] +# Python 3.13 (because NumPy is not yet compatible) +skip = ["pp*", "*-musllinux_aarch64", "cp313-*"] [tool.cibuildwheel.linux] archs = ["x86_64", "aarch64"]