From d71c12f8bf6d25e08900032ed817ecd1ac7eb54d Mon Sep 17 00:00:00 2001 From: Paul Linnerud Date: Wed, 26 Aug 2026 16:22:48 -0700 Subject: [PATCH] Move CI off retired windows-2019 runner image GitHub retired the windows-2019 hosted runner image on 2025-06-30. Jobs requesting that label are never assigned a runner; they sit queued until the 24 hour limit cancels them, which is why recent "Build and Test" runs show as cancelled at 24h00m rather than failing on a step. Switch both workflows to windows-2022 so jobs are schedulable again. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: e3976c94-4fbf-4be7-a74d-d08a3c592269 --- .github/workflows/CI.yml | 2 +- .github/workflows/pypi_publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 72b5116..435c533 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: windows-2019 + runs-on: windows-2022 env: CIBW_BUILD: cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64 diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index 4d176eb..2bddac1 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -13,7 +13,7 @@ on: jobs: build-n-publish: # The type of runner that the job will run on - runs-on: windows-2019 + runs-on: windows-2022 env: CIBW_BUILD: cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64