Skip to content

Commit

Permalink
Disable some old Pythons on GitHub Actions with macos-latest (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
aisk committed Apr 25, 2024
1 parent 359ac33 commit 0b9ea2b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@ jobs:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
# see https://github.com/actions/setup-python/issues/850
- os: macos-latest
python-version: 3.7
- os: macos-latest
python-version: 3.8
- os: macos-latest
python-version: 3.9
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run image
Expand Down

0 comments on commit 0b9ea2b

Please sign in to comment.