From d4f47f97715c7b6a2879e99c62f09ccead8cc4cd Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 23 Sep 2025 16:48:20 -0400 Subject: [PATCH] ci: use latest versions of lint deps Some of the versions used here are > 2 years old. i.e mypy. Use the latest avilable versions, except for LIEF, which is generally changed with Guix. --- ci/lint/01_install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/lint/01_install.sh b/ci/lint/01_install.sh index 75f891105c0..0d8cca98252 100755 --- a/ci/lint/01_install.sh +++ b/ci/lint/01_install.sh @@ -41,10 +41,10 @@ python3 --version ${CI_RETRY_EXE} pip3 install \ codespell==2.4.1 \ lief==0.16.6 \ - mypy==1.4.1 \ - pyzmq==25.1.0 \ - ruff==0.5.5 \ - vulture==2.6 + mypy==1.18.2 \ + pyzmq==27.1.0 \ + ruff==0.13.2 \ + vulture==2.14 SHELLCHECK_VERSION=v0.11.0 curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | \