Skip to content

Commit

Permalink
skip incompatible macos versions of python
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns authored May 7, 2024
1 parent 3526835 commit f75b819
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.9'
architecture: x64
Expand All @@ -37,7 +37,14 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos13]
exclude:
- os: macos-latest
python-version: '3.8'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.10'

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

0 comments on commit f75b819

Please sign in to comment.