From 78b2c2e343fbe9778cca5a891719f0c4718cceb6 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Tue, 6 Jan 2026 11:19:14 +0000 Subject: [PATCH] Upgrade to MacOS 15 MacOS 13 has been deprecated. See https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ --- .github/workflows/code.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 6feedecd..f2c7009c 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -53,13 +53,13 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-13] + os: [ubuntu-latest, windows-latest, macos-15-intel] python: [cp37, cp38, cp39, cp310, cp311, cp312] include: # Put coverage and results files in the project directory for mac - - os: macos-13 + - os: macos-15-intel cov_file: "{project}/dist/coverage.xml" results_file: "{project}/dist/pytest-results.xml" # And for windows @@ -128,7 +128,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-13] + os: [ubuntu-latest, windows-latest, macos-15-intel] python: [cp37, cp38, cp39, cp310, cp311, cp312] runs-on: ${{ matrix.os }}