Skip to content

Commit

Permalink
ci: remove py37/38. Add py312
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Dec 25, 2024
1 parent b5460c0 commit 85f27aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
python: [3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -24,4 +24,4 @@ jobs:
run: tox -e py
- name: Run flake8 / docs
run: tox -e flake8,docs
if: matrix.python == 3.8
if: matrix.python == 3.12
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,py310,py311,flake8,docs
envlist = py39,py310,py311,py312,flake8,docs

[testenv]
skipsdist=true
Expand All @@ -18,7 +18,7 @@ deps =
[testenv:flake8]
skipsdist=true
skip_install=true
basepython = python3.8
basepython = python3.12
commands =
flake8
deps =
Expand All @@ -27,7 +27,7 @@ deps =
[testenv:docs]
skip_install=false
skipsdist=true
basepython = python3.8
basepython = python3.12
changedir = docs
deps =
sphinx
Expand All @@ -39,7 +39,7 @@ commands =
[testenv:build]
skip_install=false
skipsdist=true
basepython = python3.8
basepython = python3.12
commands =
python -m irc3._parse_rfc
python -m irc3._gen_doc
Expand Down

0 comments on commit 85f27aa

Please sign in to comment.