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 07E15A04AF; Fri, 21 Aug 2020 14:42:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D8E751C0BD; Fri, 21 Aug 2020 14:42:52 +0200 (CEST) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id DD7901C0BD for ; Fri, 21 Aug 2020 14:42:50 +0200 (CEST) Received: from [2605:a601:a627:ca00:664d:4b4b:674f:5257] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1k96NY-0000Sp-5R; Fri, 21 Aug 2020 08:42:46 -0400 Date: Fri, 21 Aug 2020 08:42:38 -0400 From: Neil Horman To: Louise Kilheeney Cc: dev@dpdk.org, robin.jarry@6wind.com, anatoly.burakov@intel.com, bruce.richardson@intel.com, Neil Horman , Ray Kinsella Message-ID: <20200821124238.GB214551@localhost.localdomain> References: <20200522132320.26373-1-louise.kilheeney@intel.com> <20200821091452.2482-1-louise.kilheeney@intel.com> <20200821091452.2482-8-louise.kilheeney@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200821091452.2482-8-louise.kilheeney@intel.com> X-Spam-Score: -1.7 (-) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCH v5 7/9] devtools: support python3 only 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, Aug 21, 2020 at 10:14:50AM +0100, Louise Kilheeney wrote: > Changed script to explicitly use python3 only to avoid > maintaining python 2 and removed deprecation notice. > > Cc: Neil Horman > Cc: Ray Kinsella > > Signed-off-by: Louise Kilheeney > Acked-by: Ray Kinsella > --- > devtools/update_version_map_abi.py | 7 +------ > 1 file changed, 1 insertion(+), 6 deletions(-) > > diff --git a/devtools/update_version_map_abi.py b/devtools/update_version_map_abi.py > index 80a61641ed..830e6c58c8 100755 > --- a/devtools/update_version_map_abi.py > +++ b/devtools/update_version_map_abi.py > @@ -1,4 +1,4 @@ > -#!/usr/bin/env python > +#!/usr/bin/env python3 > # SPDX-License-Identifier: BSD-3-Clause > # Copyright(c) 2019 Intel Corporation > > @@ -9,7 +9,6 @@ > from the devtools/update-abi.sh utility. > """ > > -from __future__ import print_function > import argparse > import sys > import re > @@ -160,10 +159,6 @@ 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