Skip to content

Commit

Permalink
[REF] github-actions: Use macosx-latest only for py-latest and macosx…
Browse files Browse the repository at this point in the history
  • Loading branch information
moylop260 committed Aug 14, 2024
1 parent 90bc6c1 commit 042e5b0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-13]
tox_env: ['py']
include:
- python: '3.12'
Expand All @@ -52,6 +52,12 @@ jobs:
- python: '3.12'
os: ubuntu-latest
tox_env: 'build'
# macos-14 AKA macos-latest has switched to being an ARM runner, only supporting newer versions of Python
# https://github.com/actions/setup-python/issues/825#issuecomment-2096792396
- python: '3.12'
os: macos-latest
tox_env: 'py'

steps:
- name: Set git to not change EoL
if: runner.os == 'Windows'
Expand Down

0 comments on commit 042e5b0

Please sign in to comment.