Skip to content

Commit

Permalink
bump python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
furlongm committed Jun 19, 2024
1 parent 7ecebfa commit f23c642
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
max-parallel: 5
matrix:
python-version: [3.7, 3.8]
python-version: [3.8, 3.9, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
33 changes: 27 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
[tox]
skipsdist = True
envlist =
py37
py37-flake8
py38
py38-flake8
py39
py39-flake8
py310
py310-flake8
py311
py311-flake8
py312
py312-flake8

[testenv]
deps =
Expand All @@ -19,12 +25,27 @@ deps =
commands = flake8
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,*migrations*

[testenv:py37-flake8]
basepython = python3.7
[testenv:py38-flake8]
basepython = python3.8
deps = {[flake8]deps}
commands = {[flake8]commands}

[testenv:py38-flake8]
basepython = python3.8
[testenv:py39-flake8]
basepython = python3.9
deps = {[flake8]deps}
commands = {[flake8]commands}

[testenv:py310-flake8]
basepython = python3.10
deps = {[flake8]deps}
commands = {[flake8]commands}

[testenv:py311-flake8]
basepython = python3.11
deps = {[flake8]deps}
commands = {[flake8]commands}

[testenv:py312-flake8]
basepython = python3.12
deps = {[flake8]deps}
commands = {[flake8]commands}

0 comments on commit f23c642

Please sign in to comment.