From patchwork Fri Aug 14 19:58:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 1345192 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=bootlin.com Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4BSvQ035YJz9sTK for ; Sat, 15 Aug 2020 05:58:32 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C3222890FF; Fri, 14 Aug 2020 19:58:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0E0er+1zjtem; Fri, 14 Aug 2020 19:58:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A6121890E6; Fri, 14 Aug 2020 19:58:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 11DD71BF45A for ; Fri, 14 Aug 2020 19:58:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0DEB9890E6 for ; Fri, 14 Aug 2020 19:58:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q6ZPrSIST6Tz for ; Fri, 14 Aug 2020 19:58:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by whitealder.osuosl.org (Postfix) with ESMTPS id 78A96890D3 for ; Fri, 14 Aug 2020 19:58:26 +0000 (UTC) X-Originating-IP: 83.193.91.77 Received: from localhost (lfbn-bay-1-248-77.w83-193.abo.wanadoo.fr [83.193.91.77]) (Authenticated sender: thomas.petazzoni@bootlin.com) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id E43B860002; Fri, 14 Aug 2020 19:58:22 +0000 (UTC) From: Thomas Petazzoni To: Buildroot List Date: Fri, 14 Aug 2020 21:58:20 +0200 Message-Id: <20200814195820.987824-1-thomas.petazzoni@bootlin.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] support/docker: drop Python 2.x modules X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "Yann E. MORIN" , Thomas Petazzoni , Titouan Christophe Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Since commit 4a40d36f131890941c1e482eb5f28ebcd81cb7a3 ("support/testing: switch to Python 3 only") our runtime testing infrastructure is Python 3.x only. Therefore, it is no longer needed to have python-nose2 and python-pexpect in the Docker container used to run our Gitlab CI jobs. Signed-off-by: Thomas Petazzoni --- support/docker/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile index 8c555dcf7a..a9bacca3a0 100644 --- a/support/docker/Dockerfile +++ b/support/docker/Dockerfile @@ -36,8 +36,6 @@ RUN apt-get install -y --no-install-recommends \ libncurses5-dev \ locales \ mercurial \ - python-nose2 \ - python-pexpect \ python3 \ python3-flake8 \ python3-nose2 \