From 3a7f0dc929d082cbbb789b05f9762b2d2bd59fbe Mon Sep 17 00:00:00 2001 From: AlexWells Date: Mon, 15 Dec 2025 14:17:49 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 6feedecd..fe790ea7 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