File tree Expand file tree Collapse file tree 6 files changed +13
-11
lines changed Expand file tree Collapse file tree 6 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 3535 if : steps.changes.outputs.code == 'true'
3636 uses : " actions/setup-python@v5"
3737 with :
38- python-version : " 3.8 "
38+ python-version : " 3.9 "
3939
4040 - name : Install dependencies 🔧
4141 if : steps.changes.outputs.code == 'true'
Original file line number Diff line number Diff line change 4040 if : steps.changes.outputs.code == 'true'
4141 uses : " actions/setup-python@v5"
4242 with :
43- python-version : " 3.8 "
43+ python-version : " 3.9 "
4444
4545 - name : Install dependencies 🔧
4646 run : |
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ autodoc_exclude_members = [
124124]
125125
126126[tool .mypy ]
127- python_version = " 3.8 "
127+ python_version = " 3.9 "
128128namespace_packages = true
129129check_untyped_defs = true
130130warn_unused_ignores = true
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ use_whey: true
1515min_coverage : 95
1616sphinx_html_theme : furo
1717docs_fail_on_warning : true
18+ mypy_version : 1.16
19+ python_deploy_version : 3.9
1820
1921python_versions :
2022 - ' 3.7'
Original file line number Diff line number Diff line change 3838
3939# 3rd party
4040import click
41- import entrypoints # type: ignore[import]
41+ import entrypoints # type: ignore[import-untyped ]
4242from consolekit .terminal_colours import ColourTrilean , resolve_color_default
4343from consolekit .utils import coloured_diff
4444from domdf_python_tools .paths import PathPlus
Original file line number Diff line number Diff line change 5050 py312-click{7,8}
5151 py313-click{7,8}
5252qa = mypy, lint
53- cov = py38 -click7, coverage
53+ cov = py39 -click7, coverage
5454
5555[testenv]
5656setenv =
@@ -110,7 +110,7 @@ commands =
110110 check-wheel-contents dist/
111111
112112[testenv:lint]
113- basepython = python3.8
113+ basepython = python3.9
114114changedir = {toxinidir}
115115ignore_errors = True
116116skip_install = True
@@ -140,32 +140,32 @@ deps =
140140commands = python3 -m flake8_rst_docstrings_sphinx snippet_fmt tests --allow-toolbox {posargs}
141141
142142[testenv:perflint]
143- basepython = python3.8
143+ basepython = python3.9
144144changedir = {toxinidir}
145145ignore_errors = True
146146skip_install = True
147147deps = perflint
148148commands = python3 -m perflint snippet_fmt {posargs}
149149
150150[testenv:mypy]
151- basepython = python3.8
151+ basepython = python3.9
152152ignore_errors = True
153153changedir = {toxinidir}
154154deps =
155- mypy ==0.971
155+ mypy ==1.16
156156 -r{toxinidir}/tests/requirements.txt
157157commands = mypy snippet_fmt tests {posargs}
158158
159159[testenv:pyup]
160- basepython = python3.8
160+ basepython = python3.9
161161skip_install = True
162162ignore_errors = True
163163changedir = {toxinidir}
164164deps = pyupgrade-directories
165165commands = pyup_dirs snippet_fmt tests --py36-plus --recursive
166166
167167[testenv:coverage]
168- basepython = python3.8
168+ basepython = python3.9
169169skip_install = True
170170ignore_errors = True
171171whitelist_externals = /bin/bash
You can’t perform that action at this time.
0 commit comments