Skip to content

Commit

Permalink
[FIX] Changed version of macos in Github Actions
Browse files Browse the repository at this point in the history
Github actions' macos-latest is now compatible with only python>=3.11.
Consequently we downgrade the test to macos-13 for the lower versions of
python

Related: Vauxoo#213
  • Loading branch information
maneandrea committed Jun 13, 2024
1 parent b34c2f5 commit 988a261
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ jobs:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-13]
tox_env: ["py,codecov"]
include:
- python: '3.11'
os: macos-latest
tox_env: ["py,codecov"]
- python: '3.10'
os: ubuntu-latest
tox_env: 'check'
Expand Down

0 comments on commit 988a261

Please sign in to comment.