From 39b337c580b42405c8a2266e74df40eadf6aed55 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Schmidt Date: Mon, 15 Jun 2026 14:53:27 -0400 Subject: [PATCH] stay on windows 2022 runners for now. --- .github/workflows/ci.yml | 2 +- .github/workflows/conda-build.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c38b6e6..280b6f6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: - { os: ubuntu-latest, environment: 'py312' } - { os: ubuntu-latest, environment: 'py313' } - { os: ubuntu-latest, environment: 'py314' } - - { os: windows-latest, environment: 'py314' } + - { os: windows-2022, environment: 'py314' } - { os: macos-latest, environment: 'py314' } - { os: ubuntu-latest, environment: 'oldies' } - { os: ubuntu-latest, environment: 'nightly' } diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 810c718b..e5202aea 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -25,8 +25,8 @@ jobs: - { conda_build_yml: osx_64_python3.11.____cpython, os: macos-latest, conda-build-args: ' --no-test' } - { conda_build_yml: osx_arm64_python3.10.____cpython, os: macos-latest, conda-build-args: '' } - { conda_build_yml: osx_arm64_python3.13.____cp313, os: macos-latest, conda-build-args: '' } - - { conda_build_yml: win_64_python3.10.____cpython, os: windows-latest, conda-build-args: '' } - - { conda_build_yml: win_64_python3.13.____cp313, os: windows-latest, conda-build-args: '' } + - { conda_build_yml: win_64_python3.10.____cpython, os: windows-2022, conda-build-args: '' } + - { conda_build_yml: win_64_python3.13.____cp313, os: windows-2022, conda-build-args: '' } steps: - name: Checkout branch @@ -35,7 +35,7 @@ jobs: run: git fetch --prune --unshallow - uses: mamba-org/setup-micromamba@d7c9bd84e824b79d2af72a2d4196c7f4300d3476 with: - init-shell: ${{ matrix.os == 'windows-latest' && 'cmd.exe' || 'bash' }} + init-shell: ${{ matrix.os == 'windows-2022' && 'cmd.exe' || 'bash' }} micromamba-version: 1.5.10-0 environment-name: build create-args: conda-build @@ -49,14 +49,14 @@ jobs: - "${CONDA_BUILD_SYSROOT}" EOF - name: Build conda package (unix) - if: matrix.os != 'windows-latest' + if: matrix.os != 'windows-2022' shell: bash -el {0} run: >- conda-build -m ".ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml"${{ matrix.conda-build-args }} conda.recipe - name: Build conda package (windows) - if: matrix.os == 'windows-latest' + if: matrix.os == 'windows-2022' shell: cmd /C CALL {0} run: >- conda-build