diff options
author | Jon Atack <jon@atack.com> | 2023-06-15 15:08:43 -0600 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2023-06-29 16:14:07 -0600 |
commit | 146c861da2e4236997bee3eed6110a5016a8b86b (patch) | |
tree | f54d6e17e5af00f83245fdfcfb4c2ee6e7f153d6 /ci/lint | |
parent | 92408224a4cb2f454465d5ff8445c247f2c4318a (diff) |
script: update linter dependencies
Diffstat (limited to 'ci/lint')
-rwxr-xr-x | ci/lint/04_install.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ci/lint/04_install.sh b/ci/lint/04_install.sh index 737cf3e2fb..b3b1c91ee0 100755 --- a/ci/lint/04_install.sh +++ b/ci/lint/04_install.sh @@ -33,11 +33,11 @@ if [ -z "${SKIP_PYTHON_INSTALL}" ]; then python3 --version fi -${CI_RETRY_EXE} pip3 install codespell==2.2.1 -${CI_RETRY_EXE} pip3 install flake8==5.0.4 -${CI_RETRY_EXE} pip3 install lief==0.13.1 -${CI_RETRY_EXE} pip3 install mypy==0.971 -${CI_RETRY_EXE} pip3 install pyzmq==24.0.1 +${CI_RETRY_EXE} pip3 install codespell==2.2.5 +${CI_RETRY_EXE} pip3 install flake8==6.0.0 +${CI_RETRY_EXE} pip3 install lief==0.13.2 +${CI_RETRY_EXE} pip3 install mypy==1.4.1 +${CI_RETRY_EXE} pip3 install pyzmq==25.1.0 ${CI_RETRY_EXE} pip3 install vulture==2.6 SHELLCHECK_VERSION=v0.8.0 |