Message ID | 20200522132320.26373-9-louise.kilheeney@intel.com (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Thomas Monjalon |
Headers | show |
Series | adding support for python 3 only. | expand |
Context | Check | Description |
---|---|---|
ci/Intel-compilation | success | Compilation OK |
ci/checkpatch | success | coding style OK |
yes - I noticed the rpm packaging has become very pedantic about this of late. Ray K On 22/05/2020 14:23, Louise Kilheeney wrote: > Changed script to explicitly use python3 only. > > Cc: Neil Horman <nhorman@tuxdriver.com> > Cc: Ray Kinsella <mdr@ashroe.eu> > > Signed-off-by: Louise Kilheeney <louise.kilheeney@intel.com> > --- > devtools/update_version_map_abi.py | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/devtools/update_version_map_abi.py b/devtools/update_version_map_abi.py > index 616412a1c..58aa368f9 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 > Acked-by: Ray Kinsella <mdr@ashroe.eu>
diff --git a/devtools/update_version_map_abi.py b/devtools/update_version_map_abi.py index 616412a1c..58aa368f9 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
Changed script to explicitly use python3 only. Cc: Neil Horman <nhorman@tuxdriver.com> Cc: Ray Kinsella <mdr@ashroe.eu> Signed-off-by: Louise Kilheeney <louise.kilheeney@intel.com> --- devtools/update_version_map_abi.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)