Skip to content

Commit b06aa78

Browse files
committed
Bump black and flake8 versions
1 parent 264d401 commit b06aa78

File tree

4 files changed

+51
-51
lines changed

4 files changed

+51
-51
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default_language_version:
33
python: python3.8
44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 22.6.0
6+
rev: 22.8.0
77
hooks:
88
- id: black
99
language_version: python3
@@ -14,9 +14,9 @@ repos:
1414
hooks:
1515
- id: isort
1616
name: isort (python)
17-
- repo: https://gitlab.com/pycqa/flake8
17+
- repo: https://github.com/pycqa/flake8
1818
# flake8 config is in setup.cfg
19-
rev: 4.0.1
19+
rev: 5.0.4
2020
hooks:
2121
- id: flake8
2222
additional_dependencies:

poetry.lock

+44-44
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ wagtailmedia = "~0.11.0"
4242
whitenoise = "~6.2.0"
4343

4444
[tool.poetry.group.dev.dependencies]
45-
black = "22.6.0"
45+
black = "22.8.0"
4646
djhtml = "1.5.1"
4747
fabric3 = "1.14.post1" # TODO switch to fabric/invoke
48-
flake8 = "4.0.1"
48+
flake8 = "5.0.4"
4949
flake8-assertive = "2.1.0"
5050
flake8-blind-except = "0.2.1"
5151
flake8-comprehensions = "3.10.0"
52-
isort = "~5.10.1"
52+
isort = "5.10.1"
5353
pre-commit = "2.20.0"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# E203: Whitespace before ':'
1010
# E501: Line too long
1111
ignore = D100,D101,D102,D103,D105,W503,N806,E203,E501
12-
exclude = */migrations/*,*/node_modules/*,venv,.venv
12+
exclude = */migrations/*,*/node_modules/*,venv,.venv,*/static/*,*/static_compiled/*
1313
max-line-length = 120
1414

1515
[isort]

0 commit comments

Comments
 (0)