From: Ed Bartosh <ed.bartosh@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH] buildhistory-diff: suggest correct version of PythonGit
Date: Fri, 10 Jun 2016 10:43:52 +0300 [thread overview]
Message-ID: <1465544632-8025-1-git-send-email-ed.bartosh@linux.intel.com> (raw)
If buildhistory-diff can't import git module it throws error
message suggesting to install it.
Due to the move to Python 3 the suggested package name and
version became outdated.
Changed package name to python3-git and version to >= 0.3.4
as GitPython supports Python 3 starting from 0.3.4.
[YOCTO #9741]
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
---
scripts/buildhistory-diff | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/buildhistory-diff b/scripts/buildhistory-diff
index dc8b8f2..d8ca12d 100755
--- a/scripts/buildhistory-diff
+++ b/scripts/buildhistory-diff
@@ -14,7 +14,7 @@ from distutils.version import LooseVersion
try:
import git
except ImportError:
- print("Please install GitPython (python-git) 0.3.1 or later in order to use this script")
+ print("Please install GitPython (python3-git) 0.3.4 or later in order to use this script")
sys.exit(1)
def main():
--
2.1.4
reply other threads:[~2016-06-10 7:44 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1465544632-8025-1-git-send-email-ed.bartosh@linux.intel.com \
--to=ed.bartosh@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.