From 697da548da253b2216919d4fde15845d30dc0d13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 01:08:10 +0000 Subject: [PATCH 1/3] Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.17.0 to 2.18.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.17.0...v2.18.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7326bbf1..4a51bf64 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -44,7 +44,7 @@ jobs: ci\install_libspatialindex.bat - name: Build wheels - uses: pypa/cibuildwheel@v2.17.0 + uses: pypa/cibuildwheel@v2.18.0 - uses: actions/upload-artifact@v4 with: From 7798cbcbc93eda69cda40f0951ab5773b92c2533 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 13 May 2024 17:17:43 +0200 Subject: [PATCH 2/3] cibuildwheel no longer installs wheel automatically --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4a51bf64..b5da9497 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,6 +34,9 @@ jobs: with: python-version: '3.11' + - name: Setup + run: pip install wheel + - uses: ilammy/msvc-dev-cmd@v1 if: startsWith(matrix.os, 'windows') From 5e77a73e01c2a85b1a909fa5d5bde67c91518b39 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Mon, 13 May 2024 17:29:59 +0200 Subject: [PATCH 3/3] No macOS arm64 builds for libspatialindex 1.8.5 --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb062ca6..a852965a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,10 @@ jobs: matrix: os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] - sidx-version: ['1.8.5','1.9.3'] + sidx-version: ['1.8.5', '1.9.3'] + exclude: + - os: 'macos-latest' + - sidx-version: '1.8.5' steps: - uses: actions/checkout@v4