jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/368746 )
Change subject: requirements.txt: Avoid pyOpenSSL 17.2.0 ......................................................................
requirements.txt: Avoid pyOpenSSL 17.2.0
Bug: T172088 Change-Id: I7ba2625fa1c9126130b99b39aa41daa8a7101261 --- M requests-requirements.txt M requirements.txt 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: Mpaa: Looks good to me, approved jenkins-bot: Verified
diff --git a/requests-requirements.txt b/requests-requirements.txt index a2ffe1e..603252a 100644 --- a/requests-requirements.txt +++ b/requests-requirements.txt @@ -2,7 +2,7 @@
# requests security extra # Bug T105767 on Python 2.7 release 9+ -pyOpenSSL>=0.14 ; python_full_version < '2.7.9' or python_version >= '3' +pyOpenSSL>=0.14,!=17.2.0 ; python_full_version < '2.7.9' or python_version >= '3' cryptography>=1.3.4 ; python_full_version < '2.7.9' or python_version >= '3' idna>=2.0.0 ; python_full_version < '2.7.9' or python_version >= '3' # https://github.com/eliben/pycparser/issues/147 diff --git a/requirements.txt b/requirements.txt index 0838f60..cb4674b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ requests>=2.4.1
# requests security extra -pyOpenSSL>=0.14 ; python_full_version < '2.7.9' +pyOpenSSL>=0.14,!=17.2.0 ; python_full_version < '2.7.9' cryptography>=1.3.4 ; python_full_version < '2.7.9' idna>=2.0.0 ; python_full_version < '2.7.9' # https://github.com/eliben/pycparser/issues/147
pywikibot-commits@lists.wikimedia.org