From 3bb9953f6a006440e35291cd717315ffd42622d9 Mon Sep 17 00:00:00 2001 From: Stefan Hansson <newbyte@postmarketos.org> Date: Sat, 5 Oct 2024 20:12:00 +0200 Subject: [PATCH] CI: Install mypy from pip instead of Alpine (MR 2425) Alpine stable's mypy is currently outdated and has bugs in its handling of overloads. As such, just use mypy from pip so we don't have to worry about working aroud bugs in old mypy versions. [ci:skip-build]: already built successfully in CI --- .ci/mypy.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/mypy.sh b/.ci/mypy.sh index d5033c59a..bcebb0a60 100755 --- a/.ci/mypy.sh +++ b/.ci/mypy.sh @@ -4,10 +4,11 @@ if [ "$(id -u)" = 0 ]; then set -x - apk -q add py3-argcomplete py3-mypy + apk -q add py3-argcomplete py3-pip exec su "${TESTUSER:-build}" -c "sh -e $0" fi set -x -mypy --color-output pmbootstrap.py +pip install --break-system-packages --no-warn-script-location mypy +python -m mypy --color-output pmbootstrap.py -- GitLab