Skip to content

Commit b5f6876

Browse files
committed
tox: fix dependencies
Since flake8 6.0, the copyright plugin fails to run: ValueError: 'int' is not callable This plugin is not critical, remove it. Also use latest versions of black and pylint along the way. Link: savoirfairelinux/flake8-copyright#19 Signed-off-by: Robin Jarry <robin@jarry.cc>
1 parent f71ddc3 commit b5f6876

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ basepython = python3
2828
description = Format python code using isort and black.
2929
changedir = .
3030
deps =
31-
black==22.3.0
31+
black==22.10.0
3232
isort
3333
skip_install = true
3434
install_command = python3 -m pip install {opts} {packages}
@@ -44,11 +44,10 @@ basepython = python3
4444
description = Run coding style checks.
4545
changedir = .
4646
deps =
47-
black==22.3.0
47+
black==22.10.0
4848
flake8
49-
flake8-copyright
5049
isort
51-
pylint==2.14.*
50+
pylint
5251
whitelist_externals =
5352
/bin/sh
5453
/usr/bin/sh

0 commit comments

Comments
 (0)