Skip to content

Commit

Permalink
Update to supported Python versions
Browse files Browse the repository at this point in the history
Drop Python 3.7 and 3.8 from CI, as both had test failures due to
other packages dropping support for these now EOL versions.

Add Python 3.11 and 3.12 to CI.
  • Loading branch information
tw4l committed Nov 7, 2024
1 parent 2aa7aba commit 45cae65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: checkout
Expand All @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U black pytest pytest-cov
pip install -U black pytest pytest-cov setuptools[core]
python setup.py -q install
- name: Style Check
Expand Down

0 comments on commit 45cae65

Please sign in to comment.