File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Expand file tree Collapse file tree 5 files changed +12
-11
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.7 "
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.7 "
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 @@ -119,7 +119,7 @@ autodoc_exclude_members = [
119
119
]
120
120
121
121
[tool .mypy ]
122
- python_version = " 3.7 "
122
+ python_version = " 3.9 "
123
123
namespace_packages = true
124
124
check_untyped_defs = true
125
125
warn_unused_ignores = true
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ version: '0.5.0'
10
10
license : ' MIT'
11
11
short_desc : ' A tool to check all modules can be correctly imported.'
12
12
13
- python_deploy_version : 3.6
13
+ mypy_version : 1.16
14
+ python_deploy_version : 3.9
14
15
use_whey : true
15
16
min_coverage : 98
16
17
enable_conda : false
Original file line number Diff line number Diff line change 56
56
pypy38-click{7.1,8.0,8.1}
57
57
pypy39-click{7.1,8.0,8.1}
58
58
qa = mypy, lint
59
- cov = py37 -click7.1, coverage
59
+ cov = py39 -click7.1, coverage
60
60
61
61
[testenv]
62
62
setenv =
@@ -117,7 +117,7 @@ commands =
117
117
check-wheel-contents dist/
118
118
119
119
[testenv:lint]
120
- basepython = python3.7
120
+ basepython = python3.9
121
121
changedir = {toxinidir}
122
122
ignore_errors = True
123
123
skip_install = True
@@ -147,33 +147,33 @@ deps =
147
147
commands = python3 -m flake8_rst_docstrings_sphinx importcheck tests --allow-toolbox {posargs}
148
148
149
149
[testenv:perflint]
150
- basepython = python3.7
150
+ basepython = python3.9
151
151
changedir = {toxinidir}
152
152
ignore_errors = True
153
153
skip_install = True
154
154
deps = perflint
155
155
commands = python3 -m perflint importcheck {posargs}
156
156
157
157
[testenv:mypy]
158
- basepython = python3.7
158
+ basepython = python3.9
159
159
ignore_errors = True
160
160
changedir = {toxinidir}
161
161
deps =
162
- mypy ==0.971
162
+ mypy ==1.16
163
163
-r{toxinidir}/tests/requirements.txt
164
164
-r{toxinidir}/stubs.txt
165
165
commands = mypy importcheck tests {posargs}
166
166
167
167
[testenv:pyup]
168
- basepython = python3.7
168
+ basepython = python3.9
169
169
skip_install = True
170
170
ignore_errors = True
171
171
changedir = {toxinidir}
172
172
deps = pyupgrade-directories
173
173
commands = pyup_dirs importcheck tests --py36-plus --recursive
174
174
175
175
[testenv:coverage]
176
- basepython = python3.7
176
+ basepython = python3.9
177
177
skip_install = True
178
178
ignore_errors = True
179
179
whitelist_externals = /bin/bash
You can’t perform that action at this time.
0 commit comments