From 462bd1134dcc0d9e59884d5c9d067ea9b611c766 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 04:02:13 +0000 Subject: [PATCH 1/3] Bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index f39a0c5..38b1d2c 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -69,12 +69,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Download sdist artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: sdist path: dist - name: Download wheels artifact - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: pattern: wheels-* merge-multiple: true From bb4354095cd0cbdc645c75cca0cf163aad9f70dc Mon Sep 17 00:00:00 2001 From: David Hoese Date: Mon, 5 Jan 2026 10:24:18 -0600 Subject: [PATCH 2/3] Add setuptools to the CI environment setuptools is used by setup.py which we run to re-build the Cython extension in CI with coverage tracking --- continuous_integration/environment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/continuous_integration/environment.yaml b/continuous_integration/environment.yaml index 17d45e3..4f744d2 100644 --- a/continuous_integration/environment.yaml +++ b/continuous_integration/environment.yaml @@ -16,3 +16,4 @@ dependencies: - pytest-cov - pyproj >=3 - pyresample + - setuptools From 8c0c670083f90ebd751f393504f5e8479963effc Mon Sep 17 00:00:00 2001 From: David Hoese Date: Mon, 5 Jan 2026 10:55:24 -0600 Subject: [PATCH 3/3] Bump MacOS x86 wheel building to macos-15-intel --- .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 38b1d2c..bfc8786 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -37,7 +37,7 @@ jobs: arch: "AMD64" - os: windows-11-arm arch: "ARM64" - - os: macos-13 + - os: macos-15-intel arch: "x86_64" - os: macos-14 arch: "arm64"