Skip to content

Commit

Permalink
add py3.11 + py3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin on chickenita committed Sep 3, 2024
1 parent 6252ccf commit af433ae
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.6", "3.7", "3.8", "pypy-3.6", "pypy-3.7"]
permissions:
pull-requests: write
Expand Down
26 changes: 26 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ envlist=py37
py38
py39
py310
py311
py312

[testenv:py37]
deps =
Expand Down Expand Up @@ -51,3 +53,27 @@ commands=
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

[testenv:py311]
deps =
nose
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_test.txt
flake8
commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

[testenv:py312]
deps =
nose
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_test.txt
flake8
commands=
python -m flake8 pypeman
pytest --cov=pypeman --cov-config=.coveragerc
codecov
passenv=PYPEMAN_*,CODECOV_TOKEN,TRAVIS,TRAVIS_*

0 comments on commit af433ae

Please sign in to comment.