From 3039f24c576ab6c28468eecb972e09a3019f6f12 Mon Sep 17 00:00:00 2001 From: glaziermag <130600081+glaziermag@users.noreply.github.com> Date: Wed, 26 Aug 2026 15:25:32 -0700 Subject: [PATCH] CI: set an explicit python-version for test-crc32c and test-zarr Both jobs passed `${{ matrix.python-version }}` to setup-python, but neither matrix defines that key, so they have run on the runner's system Python since #839. Pin 3.13, restoring the pre-#839 interpreter. Closes #855. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 53f41dc8..27cf965a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,7 +76,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: ${{ matrix.python-version }} + python-version: "3.13" cache: 'pip' - name: Install numcodecs @@ -126,7 +126,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: ${{ matrix.python-version }} + python-version: "3.13" cache: 'pip' - name: Install numcodecs and Zarr