summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Cope <olly@ollycope.com>2022-08-29 12:47:11 +0000
committerOlly Cope <olly@ollycope.com>2022-08-29 12:47:11 +0000
commit6dc7bcefcdcc93a5f00e837d4f34651d8f170390 (patch)
treef68a4e703acd0b3c4555cef159bc361f34e6943d
parentb73196d88d24d78cbb6b64c56148ff95aa7e74c9 (diff)
downloadyoyo-6dc7bcefcdcc93a5f00e837d4f34651d8f170390.tar.gz
tox: add python 3.10, remove 3.6, 3.7
-rwxr-xr-xtox.ini10
1 files changed, 4 insertions, 6 deletions
diff --git a/tox.ini b/tox.ini
index 1e3257c..d4f0aa0 100755
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py36,py37,py38,py39,py37-sphinx,py37-flake8,py37-mypy
+envlist = py38,py39,py310,py310-sphinx,py310-flake8,py310-mypy
[testenv]
deps=
@@ -9,10 +9,9 @@ deps=
mock
frozendate
tms
-
commands=pytest []
-[testenv:py37-sphinx]
+[testenv:py310-sphinx]
deps=
hg+http://hg.sr.ht/~olly/fresco-sphinx-theme#egg=fresco_sphinx_theme
sphinx
@@ -21,9 +20,10 @@ deps=
commands=
sphinx-build -M doctest "{toxinidir}/doc/" "{toxinidir}_build"
-[testenv:py37-flake8]
+[testenv:py310-linters]
deps=
flake8
+ mypy
{[testenv]deps}
commands=
@@ -33,8 +33,6 @@ commands=
deps=
mypy
{[testenv]deps}
-
-commands=
mypy --ignore-missing-imports --check-untyped-defs yoyo []
[flake8]