Skip to content

Commit

Permalink
Downgrade MacOS CI runners
Browse files Browse the repository at this point in the history
The current macos-latest tag points to macos-14, running on arm64. We
currently can't support this architecture as it does not support
Python3.7
  • Loading branch information
AlexanderWells-diamond committed Apr 24, 2024
1 parent 4bbc933 commit e52e647
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-13]
python: [cp37, cp38, cp39, cp310]

include:
# Put coverage and results files in the project directory for mac
- os: macos-latest
- os: macos-13
cov_file: "{project}/dist/coverage.xml"
results_file: "{project}/dist/pytest-results.xml"
# And for windows
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-13]
python: [cp37, cp38, cp39, cp310]

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit e52e647

Please sign in to comment.