From 6c1eb5c1b06043f65ab0e3e9b99ff5a418b5b34e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 01:32:25 +0000 Subject: [PATCH 1/3] Bump pypa/cibuildwheel from 3.4.1 to 4.1.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4.1 to 4.1.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/v3.4.1...v4.1.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a3a5b46d..0530934a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -60,7 +60,7 @@ jobs: git fetch --prune --unshallow - name: Build wheels - uses: pypa/cibuildwheel@v3.4.1 + uses: pypa/cibuildwheel@v4.1.0 env: CIBW_SKIP: "cp39-* cp310-* *i686 *-musllinux*" CIBW_ENABLE: cpython-freethreading From 1889bbe9e8b9e061ad83eef77d00a9f0797ace29 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Wed, 1 Jul 2026 05:23:33 -0500 Subject: [PATCH 2/3] Remove deprecated freethreading cibuildwheel option --- .github/workflows/deploy.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0530934a..175ddb83 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -63,7 +63,6 @@ jobs: uses: pypa/cibuildwheel@v4.1.0 env: CIBW_SKIP: "cp39-* cp310-* *i686 *-musllinux*" - CIBW_ENABLE: cpython-freethreading CIBW_ARCHS: "${{ matrix.cibw_archs }}" CIBW_TEST_COMMAND: "python -c \"import pyresample; assert 'unknown' not in pyresample.__version__, 'incorrect version found'\"" CIBW_TEST_SKIP: "*-win_arm64" From e9a797dfab91ec67475482bbe366acd4abf13504 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Wed, 1 Jul 2026 08:29:21 -0500 Subject: [PATCH 3/3] Disable windows wheel repair This may not be the right approach but let's see if CI passes --- .github/workflows/deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 175ddb83..61b17328 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -67,6 +67,7 @@ jobs: CIBW_TEST_COMMAND: "python -c \"import pyresample; assert 'unknown' not in pyresample.__version__, 'incorrect version found'\"" CIBW_TEST_SKIP: "*-win_arm64" CIBW_BUILD_VERBOSITY: 1 + CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "" - name: Upload wheel(s) as build artifacts uses: actions/upload-artifact@v7