File tree Expand file tree Collapse file tree 5 files changed +10
-8
lines changed Expand file tree Collapse file tree 5 files changed +10
-8
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 @@ -40,7 +40,7 @@ license-key = "MIT"
40
40
package = " flake8_missing_annotations"
41
41
42
42
[tool .mypy ]
43
- python_version = " 3.8 "
43
+ python_version = " 3.9 "
44
44
namespace_packages = true
45
45
check_untyped_defs = true
46
46
warn_unused_ignores = true
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ docs_fail_on_warning: true
17
17
enable_docs : false
18
18
enable_conda : false
19
19
enable_tests : false
20
+ mypy_version : 1.16
21
+ python_deploy_version : 3.9
20
22
21
23
# Versions to run tests for
22
24
python_versions :
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ commands =
79
79
check-wheel-contents dist/
80
80
81
81
[testenv:lint]
82
- basepython = python3.8
82
+ basepython = python3.9
83
83
changedir = {toxinidir}
84
84
ignore_errors = True
85
85
skip_install = False
@@ -109,22 +109,22 @@ deps =
109
109
commands = python3 -m flake8_rst_docstrings_sphinx flake8_missing_annotations --allow-toolbox {posargs}
110
110
111
111
[testenv:perflint]
112
- basepython = python3.8
112
+ basepython = python3.9
113
113
changedir = {toxinidir}
114
114
ignore_errors = True
115
115
skip_install = True
116
116
deps = perflint
117
117
commands = python3 -m perflint flake8_missing_annotations {posargs}
118
118
119
119
[testenv:mypy]
120
- basepython = python3.8
120
+ basepython = python3.9
121
121
ignore_errors = True
122
122
changedir = {toxinidir}
123
- deps = mypy ==0.971
123
+ deps = mypy ==1.16
124
124
commands = mypy flake8_missing_annotations {posargs}
125
125
126
126
[testenv:pyup]
127
- basepython = python3.8
127
+ basepython = python3.9
128
128
skip_install = True
129
129
ignore_errors = True
130
130
changedir = {toxinidir}
You can’t perform that action at this time.
0 commit comments