From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4A70CA052A; Fri, 10 Jul 2020 12:11:49 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1DE141DBB1; Fri, 10 Jul 2020 12:11:13 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id A7F0A1DA2A for ; Fri, 10 Jul 2020 12:11:09 +0200 (CEST) IronPort-SDR: 020+nY0YU714jmq6MDWYi122cwjEmh5t0nLNTXrrQMqc1BLlSIxdAl5eBK0VZyRjgoT6LPDDUx W/BpHTrUxhEw== X-IronPort-AV: E=McAfee;i="6000,8403,9677"; a="136380958" X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="136380958" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jul 2020 03:11:09 -0700 IronPort-SDR: KjPWy/xOFWlI3F+H0SqQFVunWrqGoJu+TNp0ZMd1o+gr6V+HmnKxbCc9oAPESngf5ZdquM3URZ u+0CrjNOnQsg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="298384606" Received: from silpixa00389033.ir.intel.com (HELO silpixa00389033.ger.corp.intel.com) ([10.237.223.171]) by orsmga002.jf.intel.com with ESMTP; 10 Jul 2020 03:11:08 -0700 From: Louise Kilheeney To: dev@dpdk.org Cc: david.marchand@redhat.com, bruce.richardson@intel.com, Louise Kilheeney Date: Fri, 10 Jul 2020 11:10:52 +0100 Message-Id: <20200710101055.33671-7-louise.kilheeney@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200710101055.33671-1-louise.kilheeney@intel.com> References: <20200710101055.33671-1-louise.kilheeney@intel.com> Subject: [dpdk-dev] [PATCH 6/9] app/test: add python2 deprecation notice X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" add python2 deprecation notice Signed-off-by: Louise Kilheeney --- app/test/autotest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/test/autotest.py b/app/test/autotest.py index b42f48879..cf7584ccd 100644 --- a/app/test/autotest.py +++ b/app/test/autotest.py @@ -17,6 +17,10 @@ def usage(): usage() sys.exit(1) +if sys.version_info.major < 3: + print("WARNING: Python 2 is deprecated for use in DPDK, and will not work in future releases.", file=sys.stderr) + print("Please use Python 3 instead", file=sys.stderr) + target = sys.argv[2] test_whitelist = None -- 2.17.1