File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 2
2
minversion = 3.8.0
3
3
skip_missing_interpreters = true
4
4
envlist =
5
- py35,
6
5
py36,
7
6
py37,
7
+ py38,
8
+ py39,
9
+ py310,
8
10
lint,
9
11
type,
10
12
docs,
@@ -36,26 +38,28 @@ commands =
36
38
coverage html -d {toxworkdir}/htmlcov --rcfile setup.cfg
37
39
diff-cover --compare-branch {env:DIFF_AGAINST:origin/master} {toxworkdir}/coverage.xml
38
40
depends =
39
- py35,
40
41
py36,
41
42
py37,
43
+ py38,
44
+ py39,
45
+ py310,
42
46
parallel_show_output = True
43
47
44
48
[testenv:lint]
45
49
description = check the code style
46
- basepython = python3.7
50
+ basepython = python3.10
47
51
commands = flake8 {posargs}
48
52
49
53
[testenv:type]
50
54
description = type check ourselves
51
- basepython = python3.7
55
+ basepython = python3.10
52
56
commands =
53
57
python -m mypy --config-file mypy_self_check.ini -p mypy -p mypyc
54
58
python -m mypy --config-file mypy_self_check.ini misc/proper_plugin.py
55
59
56
60
[testenv:docs]
57
61
description = invoke sphinx-build to build the HTML docs
58
- basepython = python3.7
62
+ basepython = python3.10
59
63
deps = -rdocs/requirements-docs.txt
60
64
commands =
61
65
sphinx-build -d " {toxworkdir}/docs_doctree" docs/source " {toxworkdir}/docs_out" --color -W -bhtml {posargs}
You can’t perform that action at this time.
0 commit comments