From 62fe3f563d4ec6fa438f5596b4d5d7d15303c022 Mon Sep 17 00:00:00 2001 From: Floris-Jan Willemsen Date: Thu, 25 Apr 2024 00:11:27 +0200 Subject: [PATCH] Temporarily change to `macos-13` in test-python-package.yml As described in [this issue](https://github.com/actions/setup-python/issues/852), the latest macOS GitHub action runner is missing Python dependencies. This temporarily reverts to an older version until this is fixed. --- .github/workflows/test-python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-python-package.yml b/.github/workflows/test-python-package.yml index e4ed81c8a..e2dac9687 100644 --- a/.github/workflows/test-python-package.yml +++ b/.github/workflows/test-python-package.yml @@ -17,11 +17,11 @@ on: jobs: build: name: Test on ${{ matrix.os }} with all supported Python versions - runs-on: ${{ format('{0}-latest', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov + runs-on: ${{ format('{0}', matrix.os) }} # "-latest" is added here so we can use OS in the format expected by CodeCov strategy: matrix: - os: [ubuntu, macos] + os: [ubuntu-latest, macos-13] steps: - uses: actions/checkout@v4