Skip to content

Commit 6b5b1a9

Browse files
committed
Run linters etc. on Python 3.9
1 parent 7ae19b5 commit 6b5b1a9

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
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'

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
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: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ license-key = "MIT"
168168
package = "pyproject_parser"
169169

170170
[tool.mypy]
171-
python_version = "3.8"
171+
python_version = "3.9"
172172
namespace_packages = true
173173
check_untyped_defs = true
174174
warn_unused_ignores = true

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ version: '0.13.0'
1111
license: 'MIT'
1212
short_desc: "Parser for 'pyproject.toml'"
1313

14-
python_deploy_version: 3.8
1514
sphinx_html_theme: furo
1615
preserve_custom_theme: true
1716
tox_testenv_extras: readme,cli

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ requires =
4545
[envlists]
4646
test = py37, py38, py39, py310, py311, py312, py313, pypy37, pypy38, pypy39
4747
qa = mypy, lint
48-
cov = py38, coverage
48+
cov = py39, coverage
4949

5050
[testenv]
5151
setenv =
@@ -104,7 +104,7 @@ commands =
104104
check-wheel-contents dist/
105105

106106
[testenv:lint]
107-
basepython = python3.8
107+
basepython = python3.9
108108
changedir = {toxinidir}
109109
ignore_errors = True
110110
skip_install = True
@@ -134,15 +134,15 @@ deps =
134134
commands = python3 -m flake8_rst_docstrings_sphinx pyproject_parser tests --allow-toolbox {posargs}
135135

136136
[testenv:perflint]
137-
basepython = python3.8
137+
basepython = python3.9
138138
changedir = {toxinidir}
139139
ignore_errors = True
140140
skip_install = True
141141
deps = perflint
142142
commands = python3 -m perflint pyproject_parser {posargs}
143143

144144
[testenv:mypy]
145-
basepython = python3.8
145+
basepython = python3.9
146146
ignore_errors = True
147147
changedir = {toxinidir}
148148
extras = readme,cli
@@ -153,7 +153,7 @@ deps =
153153
commands = mypy pyproject_parser tests {posargs}
154154

155155
[testenv:pyup]
156-
basepython = python3.8
156+
basepython = python3.9
157157
skip_install = True
158158
ignore_errors = True
159159
changedir = {toxinidir}
@@ -162,7 +162,7 @@ extras = readme,cli
162162
commands = pyup_dirs pyproject_parser tests --py36-plus --recursive
163163

164164
[testenv:coverage]
165-
basepython = python3.8
165+
basepython = python3.9
166166
skip_install = True
167167
ignore_errors = True
168168
whitelist_externals = /bin/bash

0 commit comments

Comments
 (0)