From 69656131af23943310b92834bc7f2c679715d39c Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Sat, 19 Nov 2022 16:35:36 +0000 Subject: [PATCH] Fix linter --- scripts-dev/lint.sh | 2 +- testsuite/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts-dev/lint.sh b/scripts-dev/lint.sh index b1a93d5..ae4cd64 100755 --- a/scripts-dev/lint.sh +++ b/scripts-dev/lint.sh @@ -4,7 +4,7 @@ if [ $# -ge 1 ] then files=$* else - files="testsuite/setup.py testsuite/datmantests testsuite/helpers testsuite/yamatests datman-helper-postgres/datman_helper_postgres datman-helper-postgres/setup.py datman-helper-mysql/datman_helper_mysql datman-helper-mysql/setup.py" + files="testsuite/setup.py testsuite/datmantests testsuite/helpers testsuite/yamatests datman-helper-postgres/datman_helper_postgres datman-helper-mysql/datman_helper_mysql" fi echo "Linting these locations: $files" diff --git a/testsuite/setup.py b/testsuite/setup.py index cd07068..57e1c35 100644 --- a/testsuite/setup.py +++ b/testsuite/setup.py @@ -22,7 +22,7 @@ REQUIRED = ["green", "attrs", "immutabledict"] # What packages are optional? -EXTRAS = {"dev": ["black==21.7b0", "flake8==3.9.2", "isort==5.9.2"]} +EXTRAS = {"dev": ["black==22.10.0", "flake8==3.9.2", "isort==5.9.2"]} # The rest you shouldn't have to touch too much :) # ------------------------------------------------