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 85104A052A; Fri, 10 Jul 2020 12:11:16 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 435651D9CC; Fri, 10 Jul 2020 12:11:06 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B05BC1D9B9 for ; Fri, 10 Jul 2020 12:11:03 +0200 (CEST) IronPort-SDR: EK+prSrmwiDCD7rYi3vzkyccm1c+dT89ja7BX2W8LrbmG9AGcy7UhM+Dmz+s90rcAP5o4pdgzk led6G8lFIz2Q== X-IronPort-AV: E=McAfee;i="6000,8403,9677"; a="136380944" X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="136380944" 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:03 -0700 IronPort-SDR: omxWJxOsFIiOg31Kct9YCgN8bh09exbeGCgXuQfwZg8WrHiElZAmHbLAe314PTdSlPT9kg9eek leiMKidQShNg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,335,1589266800"; d="scan'208";a="298384587" 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:01 -0700 From: Louise Kilheeney To: dev@dpdk.org Cc: david.marchand@redhat.com, bruce.richardson@intel.com, Louise Kilheeney , Kevin Laatz Date: Fri, 10 Jul 2020 11:10:48 +0100 Message-Id: <20200710101055.33671-3-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 2/9] usertools/dpdk-telemetry-client: 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 depecation notice Cc: Kevin Laatz Signed-off-by: Louise Kilheeney --- usertools/dpdk-telemetry-client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/usertools/dpdk-telemetry-client.py b/usertools/dpdk-telemetry-client.py index 35edb7cd2..98d28fa89 100755 --- a/usertools/dpdk-telemetry-client.py +++ b/usertools/dpdk-telemetry-client.py @@ -23,6 +23,10 @@ except NameError: raw_input = input # Python 3 +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) + class Socket: def __init__(self): -- 2.17.1