Skip to content

Commit

Permalink
CI: pin Ubuntu to 22.04 for Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed Jan 15, 2025
1 parent f4eae8e commit a1c7bdb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ jobs:
- run: pip install -Ur requirements.txt
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
include:
- {python: "3.7", os: "ubuntu-22.04"}

runs-on: ${{ matrix.os }}
name: tests (Python ${{ matrix.python }})
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down

0 comments on commit a1c7bdb

Please sign in to comment.