diff options
author | Tim Orling <timothy.t.orling@intel.com> | 2021-10-30 08:35:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-04 23:14:05 +0000 |
commit | 48e7c7cc4d976d541e97087222387214b3088cf3 (patch) | |
tree | 5909f72933c5e2380a3938584f50ae2fd0d42f13 /scripts | |
parent | bf07396051c206305f3d8ebba4f206eeb4f5a306 (diff) | |
download | poky-48e7c7cc4d976d541e97087222387214b3088cf3.tar.gz |
scripts/buildhistory-diff: drop use of distutils
The use of distutils.version.LooseVersion to check for GitPython > 0.3.1
is not really needed anymore since any supported distribution has at least
1.0.0 (centos-7 via epel7, debian-9, ubuntu-16.04)
If we want to reinstate this check, alternatives would be to require
python3-packaging on all hosts and use packaging.version.Version or
use an imported LooseVersion in bb.version.
[YOCTO #14610]
(From OE-Core rev: bc90dcae9f53ddc246942f4d9b8ae8943e3b9754)
Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/buildhistory-diff | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff index 3bd40a2a1e..a6e785aa23 100755 --- a/scripts/buildhistory-diff +++ b/scripts/buildhistory-diff | |||
@@ -11,7 +11,6 @@ | |||
11 | import sys | 11 | import sys |
12 | import os | 12 | import os |
13 | import argparse | 13 | import argparse |
14 | from distutils.version import LooseVersion | ||
15 | 14 | ||
16 | # Ensure PythonGit is installed (buildhistory_analysis needs it) | 15 | # Ensure PythonGit is installed (buildhistory_analysis needs it) |
17 | try: | 16 | try: |
@@ -73,10 +72,6 @@ def main(): | |||
73 | parser = get_args_parser() | 72 | parser = get_args_parser() |
74 | args = parser.parse_args() | 73 | args = parser.parse_args() |
75 | 74 | ||
76 | if LooseVersion(git.__version__) < '0.3.1': | ||
77 | sys.stderr.write("Version of GitPython is too old, please install GitPython (python-git) 0.3.1 or later in order to use this script\n") | ||
78 | sys.exit(1) | ||
79 | |||
80 | if len(args.revisions) > 2: | 75 | if len(args.revisions) > 2: |
81 | sys.stderr.write('Invalid argument(s) specified: %s\n\n' % ' '.join(args.revisions[2:])) | 76 | sys.stderr.write('Invalid argument(s) specified: %s\n\n' % ' '.join(args.revisions[2:])) |
82 | parser.print_help() | 77 | parser.print_help() |