From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Petazzoni Date: Fri, 14 Aug 2020 21:56:23 +0200 Subject: [Buildroot] [git commit] support/docker: use python3-flake8 Message-ID: <20200814195008.EB84A8276B@busybox.osuosl.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net commit: https://git.buildroot.net/buildroot/commit/?id=385c4da3dd10b6bfbaf23c04f48e7835ce5cc701 branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master 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 --- support/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \