Added support for Python 3.14. Dropped support for Python 3.9.

This commit is contained in:
Joe Testa
2026-06-13 09:08:15 -04:00
parent 4f9a630de4
commit 2573235f6a
4 changed files with 15 additions and 17 deletions
+8 -9
View File
@@ -1,7 +1,6 @@
[tox]
envlist =
py{py3}-{test,pylint,flake8}
py{38,39,310,311,312,313}-{test,mypy,pylint,flake8}
py{310,311,312,313,314}-{test,mypy,pylint,flake8}
cov
skip_missing_interpreters = true
@@ -9,10 +8,10 @@ skip_missing_interpreters = true
deps =
test: pytest
test,cov: {[testenv:cov]deps}
test,py{38,39,310,311,312,313}-{type,mypy}: colorama
py{38,39,310,311,312,313}-{type,mypy}: {[testenv:mypy]deps}
py{py3,38,39,310,311,312,313}-{lint,pylint},lint: {[testenv:pylint]deps}
py{py3,38,39,310,311,312,313}-{lint,flake8},lint: {[testenv:flake8]deps}
test,py{310,311,312,313,314}-{type,mypy}: colorama
py{310,311,312,313,314}-{type,mypy}: {[testenv:mypy]deps}
py{310,311,312,313,314}-{lint,pylint},lint: {[testenv:pylint]deps}
py{310,311,312,313,314}-{lint,flake8},lint: {[testenv:flake8]deps}
setenv =
SSHAUDIT = {toxinidir}/src
test: COVERAGE_FILE = {toxinidir}/.coverage.{envname}
@@ -24,9 +23,9 @@ commands =
test: coverage combine
test: coverage report --show-missing
test: coverage html -d {toxinidir}/reports/html/coverage.{envname}
py{38,39,310,311,312,313}-{type,mypy}: {[testenv:mypy]commands}
py{py3,38,39,310,311,312,313}-{lint,pylint},lint: {[testenv:pylint]commands}
py{py3,38,39,310,311,312,313}-{lint,flake8},lint: {[testenv:flake8]commands}
py{310,311,312,313,314}-{type,mypy}: {[testenv:mypy]commands}
py{310,311,312,313,314}-{lint,pylint},lint: {[testenv:pylint]commands}
py{310,311,312,313,314}-{lint,flake8},lint: {[testenv:flake8]commands}
#ignore_outcome =
# type: true