Skip to content

Commit

Permalink
ci: exclude older python version(>3.10) on macOS runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Apr 23, 2024
1 parent f81ae4d commit 5416d8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-latest
path: ~/.cache/pip
Expand All @@ -28,6 +28,10 @@ jobs:
- os: windows-latest
path: ~\AppData\Local\pip\Cache

exclude:
- os: macos-latest
python-version: ["3.7", "3.8", "3.9"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 5416d8b

Please sign in to comment.