From: Thomas Petazzoni Date: Wed, 12 Aug 2020 14:29:04 +0000 (+0200) Subject: support/docker: use python3-flake8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=385c4da3dd10b6bfbaf23c04f48e7835ce5cc701;p=buildroot.git support/docker: use python3-flake8 support/scripts/pkg-stats now uses some Python 3.x only constructs ("async" and related keywords), so we must use the Python 3.x flake8. Signed-off-by: Thomas Petazzoni --- diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile index 03acde85d2..8c555dcf7a 100644 --- a/support/docker/Dockerfile +++ b/support/docker/Dockerfile @@ -36,10 +36,10 @@ RUN apt-get install -y --no-install-recommends \ libncurses5-dev \ locales \ mercurial \ - python-flake8 \ python-nose2 \ python-pexpect \ python3 \ + python3-flake8 \ python3-nose2 \ python3-pexpect \ qemu-system-arm \