jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/351622 )
Change subject: .travis.yml, setup.py: Don't use mwoauth-0.3.1 ......................................................................
.travis.yml, setup.py: Don't use mwoauth-0.3.1
There seems to be a bug in this version. Bug: T164154
Change-Id: Ie874df68ba0bbcfb11e581121e9099c7cc466be9 --- M .travis.yml M setup.py 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/.travis.yml b/.travis.yml index 6f6ec19..1541421 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ script: # Install security packages for requests to support HTTPS in site_detect - if [[ "$PYSETUP_TEST_EXTRAS" != '1' ]]; then - pip install mwoauth -r requests-requirements.txt ; + pip install mwoauth!=0.3.1 -r requests-requirements.txt ; fi
- mkdir ~/.pywikibot diff --git a/setup.py b/setup.py index d5167c7..fe99201 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ # 0.6.1 supports socket.io 1.0, but WMF is using 0.9 (T91393 and T85716) 'rcstream': ['socketIO-client<0.6.1'], 'security': ['requests[security]', 'pycparser!=2.14'], - 'mwoauth': ['mwoauth>=0.2.4'], + 'mwoauth': ['mwoauth>=0.2.4,!=0.3.1'], 'html': ['BeautifulSoup4'], }
pywikibot-commits@lists.wikimedia.org