Skip to content

Commit f1e9289

Browse files
committed
Bump linting tools as Kat suggested
*although I added '.0' at the end of flake8-docstrings's requirement since it's present in the bot repository (where Kat got her versions anyway).
1 parent d1c92f6 commit f1e9289

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ repos:
1818
hooks:
1919
- id: python-check-blanket-noqa
2020

21-
- repo: https://github.com/pre-commit/mirrors-isort
22-
rev: v5.9.2
21+
- repo: https://github.com/PyCQA/isort
22+
rev: 5.10.1
2323
hooks:
2424
- id: isort
2525

2626
- repo: https://github.com/pycqa/flake8
27-
rev: 3.9.2
27+
rev: 4.0.1
2828
hooks:
2929
- id: flake8
3030
additional_dependencies:
31-
- flake8-docstrings~=1.5
31+
- flake8-docstrings~=1.6.0

dev-requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# This list will have to be migrated if you wish to use another dependency manager.
44

55
# Base tools
6-
flake8~=3.7
7-
isort~=5.9
8-
pre-commit~=2.13.0
6+
flake8~=4.0.1
7+
isort~=5.10.1
8+
pre-commit~=2.17.0
99

1010
# Flake8 plugins, see https://github.com/python-discord/code-jam-template/tree/main#plugin-list
11-
flake8-docstrings~=1.5
11+
flake8-docstrings~=1.6.0

samples/Pipfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ name = "pypi"
77

88
[dev-packages]
99
# Base tools
10-
flake8 = "~=3.7"
11-
isort = "~=5.9"
12-
pre-commit = "~=2.13.0"
10+
flake8 = "~=4.0.1"
11+
isort = "~=5.10.1"
12+
pre-commit = "~=2.17.0"
1313

1414
# Flake8 plugins, see https://github.com/python-discord/code-jam-template/tree/main#plugin-list
15-
flake8-docstrings = "~=1.5"
15+
flake8-docstrings = "~=1.6.0"
1616

1717
[requires]
1818
python_version = "3.10"

samples/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ python = "3.10.*"
1010

1111
[tool.poetry.dev-dependencies]
1212
# Base tools
13-
flake8 = "~3.7"
14-
isort = "~5.9"
15-
pre-commit = "~2.13.0"
13+
flake8 = "~4.0.1"
14+
isort = "~5.10.1"
15+
pre-commit = "~2.17.0"
1616

1717
# Flake8 plugins, see https://github.com/python-discord/code-jam-template/tree/main#plugin-list
18-
flake8-docstrings = "~1.5"
18+
flake8-docstrings = "~1.6.0"
1919

2020

2121
[build-system]

0 commit comments

Comments
 (0)