launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #32282
[Merge] ~ikoruk/launchpad:upgrade-pygpgme into launchpad:master
Yuliy Schwartzburg has proposed merging ~ikoruk/launchpad:upgrade-pygpgme into launchpad:master.
Commit message:
Update the pygpgme version conditionally since newer versions support only python 3.9.
The newer version fixes the issue for which we needed a launchpad fork.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~ikoruk/launchpad/+git/launchpad/+merge/482694
We will only be able to test the newer version when we upgrade python, but in local tests, the API has stayed the same.
See https://warthogs.atlassian.net/browse/LP-2142 for details.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~ikoruk/launchpad:upgrade-pygpgme into launchpad:master.
diff --git a/requirements/launchpad.txt b/requirements/launchpad.txt
index 13edc10..07bb29e 100644
--- a/requirements/launchpad.txt
+++ b/requirements/launchpad.txt
@@ -133,7 +133,8 @@ pyasn1-modules==0.4.1
pygettextpo==0.3
# lp:~launchpad/pygpgme/pthread
# lp1 Link against libgpgme-pthread for thread-safety.
-pygpgme==0.3+lp1
+pygpgme==0.3+lp1; python_version < '3.9'
+pygpgme==0.6; python_version >= '3.9'
PyHamcrest==1.9.0
pyinotify==0.9.4
PyJWT==1.7.1