Skip to content

Commit

Permalink
CI: Clean up EOL Python versions
Browse files Browse the repository at this point in the history
Github no longer offers Python 2.x at all, so stop running CI on that.

Github no longer offers Python 3.5 or 3.6 on its latest Ubuntu images,
so use an older Ubuntu image to run those.

Signed-off-by: Simon McVittie <smcv@debian.org>
  • Loading branch information
smcv committed Dec 15, 2023
1 parent 85704db commit cb6f730
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
no-coverage: [0]
include:
- os: ubuntu-20.04
python-version: '3.5'
- os: ubuntu-20.04
python-version: '3.6'
- os: ubuntu-latest
python-version: pypy-2.7
no-coverage: 1
Expand Down

0 comments on commit cb6f730

Please sign in to comment.