From 7d8ae8051898c46b20400789d4ac826f64045a01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 13:33:41 +0000 Subject: [PATCH 1/3] Bump pypa/cibuildwheel from 3.0.1 to 3.1.3 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.0.1 to 3.1.3. - [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.0.1...v3.1.3) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 3.1.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c4f709d..3742c7c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,7 +146,7 @@ jobs: BUILDKIT_PROGRESS: plain - name: Build wheels - uses: pypa/cibuildwheel@v3.0.1 + uses: pypa/cibuildwheel@v3.1.3 - uses: actions/upload-artifact@v4 with: @@ -229,7 +229,7 @@ jobs: path: ${{ matrix.vcpkg_logs }} - name: Build wheels - uses: pypa/cibuildwheel@v3.0.1 + uses: pypa/cibuildwheel@v3.1.3 env: # CIBW needs to know triplet for the correct install path VCPKG_DEFAULT_TRIPLET: ${{ matrix.triplet }} From d16036e01e06d9360c4625e27c5ecfb9879779ca Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Tue, 5 Aug 2025 09:01:04 +0200 Subject: [PATCH 2/3] skip py314 for now --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d4d1640b..42b3f200 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ Home = "https://pyogrio.readthedocs.io/" Repository = "https://github.com/geopandas/pyogrio" [tool.cibuildwheel] -skip = ["pp*", "*musllinux*"] +skip = ["*musllinux*", "cp314-*"] archs = ["auto64"] manylinux-x86_64-image = "manylinux-x86_64-vcpkg-gdal:latest" manylinux-aarch64-image = "manylinux-aarch64-vcpkg-gdal:latest" From 25b1652543eee6bb87cf1d66cb90c9177fe5a70d Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Tue, 5 Aug 2025 09:29:04 +0200 Subject: [PATCH 3/3] also explicitly skip free-threading for now (enabled by default starting with py314) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 42b3f200..6dabe53e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ Home = "https://pyogrio.readthedocs.io/" Repository = "https://github.com/geopandas/pyogrio" [tool.cibuildwheel] -skip = ["*musllinux*", "cp314-*"] +skip = ["*musllinux*", "cp314-*", "cp31?t-*"] archs = ["auto64"] manylinux-x86_64-image = "manylinux-x86_64-vcpkg-gdal:latest" manylinux-aarch64-image = "manylinux-aarch64-vcpkg-gdal:latest"