Skip to content

Commit

Permalink
Drop Python 3.8 in GitHub actions; add more 3.12
Browse files Browse the repository at this point in the history
This overall drops one OS/version combination.
Could be leaner and mainly use older and newest
rather than three version?
  • Loading branch information
peterjc committed May 13, 2024
1 parent f3be516 commit 99eea9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.11"]
python-version: ["3.9", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.11"]
python-version: ["3.9", "3.11", "3.12"]

steps:

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
matrix:
# TODO - Try Python 3.11 again, was Python 3.11.0 was
# failing when trying to delete SQlite databases.
python-version: ["3.8", "3.10", "3.12"]
python-version: ["3.9", "3.10", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 99eea9b

Please sign in to comment.