Skip to content

Commit f56e676

Browse files
Updated files with 'repo_helper'.
1 parent 7ed33fa commit f56e676

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
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
@@ -41,7 +41,7 @@ platforms = [ "Windows", "macOS", "Linux",]
4141
license-key = "MIT"
4242

4343
[tool.mypy]
44-
python_version = "3.8"
44+
python_version = "3.9"
4545
namespace_packages = true
4646
check_untyped_defs = true
4747
warn_unused_ignores = true

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# * options.entry_points
88

99
[mypy]
10-
python_version = 3.8
10+
python_version = 3.9
1111
namespace_packages = True
1212
check_untyped_defs = True
1313
warn_unused_ignores = True

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ commands =
7878
check-wheel-contents dist/
7979

8080
[testenv:lint]
81-
basepython = python3.8
81+
basepython = python3.9
8282
changedir = {toxinidir}
8383
ignore_errors = True
8484
skip_install = True
@@ -98,6 +98,7 @@ deps =
9898
flake8-sphinx-links>=0.0.4
9999
flake8-strftime>=0.1.1
100100
flake8-typing-imports>=1.10.0
101+
git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations
101102
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
102103
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
103104
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
@@ -108,15 +109,15 @@ deps =
108109
commands = python3 -m flake8_rst_docstrings_sphinx repo_helper_github_interactive --allow-toolbox {posargs}
109110

110111
[testenv:perflint]
111-
basepython = python3.8
112+
basepython = python3.9
112113
changedir = {toxinidir}
113114
ignore_errors = True
114115
skip_install = True
115116
deps = perflint
116117
commands = python3 -m perflint repo_helper_github_interactive {posargs}
117118

118119
[testenv:mypy]
119-
basepython = python3.8
120+
basepython = python3.9
120121
ignore_errors = True
121122
changedir = {toxinidir}
122123
deps =
@@ -125,7 +126,7 @@ deps =
125126
commands = mypy repo_helper_github_interactive {posargs}
126127

127128
[testenv:pyup]
128-
basepython = python3.8
129+
basepython = python3.9
129130
skip_install = True
130131
ignore_errors = True
131132
changedir = {toxinidir}

0 commit comments

Comments
 (0)