From 9f250a5d3e16350e6df9175897bbd2ef251f62c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 07:55:38 +0000 Subject: [PATCH 1/3] Bump actions/download-artifact from 4 to 5 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0fde63c..157d2d7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -75,27 +75,27 @@ jobs: runs-on: ubuntu-latest steps: - name: Download sdist artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: sdist path: dist - name: Download wheels artifact - win - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: wheels-win path: dist - name: Download wheels artifact - mac - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: wheels-mac path: dist - name: Download wheels artifact - ubuntu aarch - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: wheels-ubuntu-aarch path: dist - name: Download wheels artifact - ubuntu x86_64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: wheels-ubuntu-x86_64 path: dist From c8788e88503da75c822adf1a9b4a9c1b9d443d01 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 2 Sep 2025 11:41:57 -0500 Subject: [PATCH 2/3] Fix deprecated codecov param in ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 01b1f35..1f82aef 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,7 +81,7 @@ jobs: uses: codecov/codecov-action@v5 with: flags: unittests - file: ./coverage.xml + files: ./coverage.xml env_vars: OS,PYTHON_VERSION,UNSTABLE - name: Coveralls Parallel From 95076addde992754378d7afe9a4df76f0f3f2c8e Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 2 Sep 2025 11:42:59 -0500 Subject: [PATCH 3/3] Force conda-forge in ci.yaml --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1f82aef..57ad690 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,10 +31,12 @@ jobs: uses: conda-incubator/setup-miniconda@v3 with: miniforge-version: latest - channel-priority: strict - python-version: ${{ matrix.python-version }} + python-version: "${{ matrix.python-version }}" activate-environment: test-environment environment-file: continuous_integration/environment.yaml + channels: conda-forge + conda-remove-defaults: true + channel-priority: strict - name: Install unstable dependencies if: matrix.experimental == true