diff options
author | Jon Atack <jon@atack.com> | 2022-10-04 15:27:30 +0200 |
---|---|---|
committer | jonatack <jon@atack.com> | 2023-01-03 11:05:09 -0800 |
commit | 1e5e87cec32260a6dfd03f11040aed8b7bb4064e (patch) | |
tree | 09b99a812649267c01acfbc30a4bb9b37fb0ff8e | |
parent | 459cb637aca80f744a8399e84bc78fab60de0b5c (diff) |
script: update python linter dependencies
-rwxr-xr-x | ci/lint/04_install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/lint/04_install.sh b/ci/lint/04_install.sh index 9ccb1d53d1..b459b321f1 100755 --- a/ci/lint/04_install.sh +++ b/ci/lint/04_install.sh @@ -17,10 +17,10 @@ ${CI_RETRY_EXE} apt-get install -y python3-pip curl git gawk jq ) ${CI_RETRY_EXE} pip3 install codespell==2.2.1 -${CI_RETRY_EXE} pip3 install flake8==4.0.1 -${CI_RETRY_EXE} pip3 install mypy==0.942 -${CI_RETRY_EXE} pip3 install pyzmq==22.3.0 -${CI_RETRY_EXE} pip3 install vulture==2.3 +${CI_RETRY_EXE} pip3 install flake8==5.0.4 +${CI_RETRY_EXE} pip3 install mypy==0.971 +${CI_RETRY_EXE} pip3 install pyzmq==24.0.1 +${CI_RETRY_EXE} pip3 install vulture==2.6 SHELLCHECK_VERSION=v0.8.0 curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/ |