File tree Expand file tree Collapse file tree 5 files changed +13
-10
lines changed Expand file tree Collapse file tree 5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 35
35
if : steps.changes.outputs.code == 'true'
36
36
uses : " actions/setup-python@v5"
37
37
with :
38
- python-version : " 3.8 "
38
+ python-version : " 3.9 "
39
39
40
40
- name : Install dependencies 🔧
41
41
if : steps.changes.outputs.code == 'true'
Original file line number Diff line number Diff line change 40
40
if : steps.changes.outputs.code == 'true'
41
41
uses : " actions/setup-python@v5"
42
42
with :
43
- python-version : " 3.8 "
43
+ python-version : " 3.9 "
44
44
45
45
- name : Install dependencies 🔧
46
46
run : |
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ package = "html_section"
43
43
always = [ " html_section" ,]
44
44
45
45
[tool .mypy ]
46
- python_version = " 3.8 "
46
+ python_version = " 3.9 "
47
47
namespace_packages = true
48
48
check_untyped_defs = true
49
49
warn_unused_ignores = true
Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ use_whey: true
14
14
enable_conda : false
15
15
enable_docs : false
16
16
min_coverage : 95
17
+ mypy_version : 1.16
18
+ python_deploy_version : 3.9
17
19
18
20
python_versions :
19
21
3.7 :
Original file line number Diff line number Diff line change 18
18
# * coverage:run
19
19
# * coverage:report
20
20
# * check-wheel-contents
21
+ # * pytest
21
22
22
23
[tox]
23
24
envlist =
62
63
py312-docutils{0.16,0.17,0.18}
63
64
py313-docutils{0.16,0.17,0.18}
64
65
qa = mypy, lint
65
- cov = py38 -sphinx3.3, coverage
66
+ cov = py39 -sphinx3.3, coverage
66
67
67
68
[testenv:.package]
68
69
setenv =
@@ -88,7 +89,7 @@ commands =
88
89
check-wheel-contents dist/
89
90
90
91
[testenv:lint]
91
- basepython = python3.8
92
+ basepython = python3.9
92
93
changedir = {toxinidir}
93
94
ignore_errors = True
94
95
skip_install = True
@@ -118,34 +119,34 @@ deps =
118
119
commands = python3 -m flake8_rst_docstrings_sphinx html_section tests --allow-toolbox {posargs}
119
120
120
121
[testenv:perflint]
121
- basepython = python3.8
122
+ basepython = python3.9
122
123
changedir = {toxinidir}
123
124
ignore_errors = True
124
125
skip_install = True
125
126
deps = perflint
126
127
commands = python3 -m perflint html_section {posargs}
127
128
128
129
[testenv:mypy]
129
- basepython = python3.8
130
+ basepython = python3.9
130
131
ignore_errors = True
131
132
changedir = {toxinidir}
132
133
deps =
133
- mypy ==0.971
134
+ mypy ==1.16
134
135
-r{toxinidir}/tests/requirements.txt
135
136
-r{toxinidir}/stubs.txt
136
137
types-docutils
137
138
commands = mypy html_section tests {posargs}
138
139
139
140
[testenv:pyup]
140
- basepython = python3.8
141
+ basepython = python3.9
141
142
skip_install = True
142
143
ignore_errors = True
143
144
changedir = {toxinidir}
144
145
deps = pyupgrade-directories
145
146
commands = pyup_dirs html_section tests --py36-plus --recursive
146
147
147
148
[testenv:coverage]
148
- basepython = python3.8
149
+ basepython = python3.9
149
150
skip_install = True
150
151
ignore_errors = True
151
152
whitelist_externals = /bin/bash
You can’t perform that action at this time.
0 commit comments