X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=devtools%2Fupdate_version_map_abi.py;h=d3068bbd2d9b4a101666f5db75a5110e9a8dd823;hb=d3376cdc7d7d685aee9e84186f8ae315c03f57f3;hp=10c3bc80986454cb42433a4d22fc4562eed16647;hpb=a6fc38f34bfcf305bbe43057e43bde498db175e5;p=dpdk.git diff --git a/devtools/update_version_map_abi.py b/devtools/update_version_map_abi.py index 10c3bc8098..d3068bbd2d 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 @@ ABI version is supplied via command-line parameter. This script is to be called from the devtools/update-abi.sh utility. """ -from __future__ import print_function import argparse import sys import re @@ -160,16 +159,12 @@ 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.') arg_parser.add_argument("map_file", type=str, help='path to linker version script file ' - '(pattern: *version.map)') + '(pattern: version.map)') arg_parser.add_argument("abi_version", type=str, help='target ABI version (pattern: MAJOR.MINOR)')