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 6204DA052A; Fri, 10 Jul 2020 12:59:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 476281DB41; Fri, 10 Jul 2020 12:59:59 +0200 (CEST) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id CE3E41DB19 for ; Fri, 10 Jul 2020 12:59:58 +0200 (CEST) Received: from [2605:a601:a627:ca00:88f6:82e4:5f1a:31bb] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1jtqky-00059B-By; Fri, 10 Jul 2020 06:59:54 -0400 Date: Fri, 10 Jul 2020 06:59:46 -0400 From: Neil Horman To: Louise Kilheeney Cc: dev@dpdk.org, david.marchand@redhat.com, bruce.richardson@intel.com, Ray Kinsella Message-ID: <20200710105946.GB2203594@hmswarspite.think-freely.org> References: <20200710101055.33671-1-louise.kilheeney@intel.com> <20200710101055.33671-5-louise.kilheeney@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200710101055.33671-5-louise.kilheeney@intel.com> X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCH 4/9] devtools/update_version_map: 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" On Fri, Jul 10, 2020 at 11:10:50AM +0100, Louise Kilheeney wrote: > Cc: Neil Horman > Cc: Ray Kinsella > > Signed-off-by: Louise Kilheeney > --- > devtools/update_version_map_abi.py | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/devtools/update_version_map_abi.py b/devtools/update_version_map_abi.py > index e2104e61e..80a61641e 100755 > --- a/devtools/update_version_map_abi.py > +++ b/devtools/update_version_map_abi.py > @@ -160,6 +160,10 @@ def __generate_internal_abi(f_out, lines): > print("};", file=f_out) > > def __main(): > + 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) > + > arg_parser = argparse.ArgumentParser( > description='Merge versions in linker version script.') > > -- > 2.17.1 > > Acked-by: Neil Horman <