Skip to content

Commit 46857e6

Browse files
committed
Bump Python version for linters etc.
1 parent a6b7637 commit 46857e6

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.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
@@ -35,7 +35,7 @@ platforms = [ "Windows", "macOS", "Linux",]
3535
license-key = "PSFLicense"
3636

3737
[tool.mypy]
38-
python_version = "3.8"
38+
python_version = "3.9"
3939
namespace_packages = true
4040
check_untyped_defs = true
4141
warn_unused_ignores = true

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ requires =
3232
[envlists]
3333
test = py37, py38, py39, py310, py311, py312, py313
3434
qa = mypy, lint
35-
cov = py38, coverage
35+
cov = py39, coverage
3636

3737
[testenv]
3838
setenv =
@@ -81,15 +81,15 @@ commands =
8181
check-wheel-contents dist/
8282

8383
[testenv:perflint]
84-
basepython = python3.8
84+
basepython = python3.9
8585
changedir = {toxinidir}
8686
ignore_errors = True
8787
skip_install = True
8888
deps = perflint
8989
commands = python3 -m perflint pprint36 {posargs}
9090

9191
[testenv:mypy]
92-
basepython = python3.8
92+
basepython = python3.9
9393
ignore_errors = True
9494
changedir = {toxinidir}
9595
deps =
@@ -98,15 +98,15 @@ deps =
9898
commands = mypy pprint36 tests {posargs}
9999

100100
[testenv:pyup]
101-
basepython = python3.8
101+
basepython = python3.9
102102
skip_install = True
103103
ignore_errors = True
104104
changedir = {toxinidir}
105105
deps = pyupgrade-directories
106106
commands = pyup_dirs pprint36 tests --py36-plus --recursive
107107

108108
[testenv:coverage]
109-
basepython = python3.8
109+
basepython = python3.9
110110
skip_install = True
111111
ignore_errors = True
112112
whitelist_externals = /bin/bash
@@ -175,7 +175,7 @@ plugins = coverage_pyver_pragma
175175
omit = pprint36/_pprint.py
176176
177177
[testenv:lint]
178-
basepython = python3.8
178+
basepython = python3.9
179179
changedir = {toxinidir}
180180
ignore_errors = True
181181
skip_install = True

0 commit comments

Comments
 (0)