jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/368582 )
Change subject: Avoid memento-client-0.6.0 ......................................................................
Avoid memento-client-0.6.0
Bug: T172057 Change-Id: I864c8bdd424569509ebc880669ac3fd743d7e6eb --- M requirements.txt M setup.py 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/requirements.txt b/requirements.txt index 0838f60..8089b12 100644 --- a/requirements.txt +++ b/requirements.txt @@ -95,7 +95,7 @@ pycountry
# scripts/weblinkchecker.py -memento_client>=0.5.1 +memento_client>=0.5.1,!=0.6.0
# tools/__init__.py # pywikibot prefers using the inbuilt bz2 module if python was compiled with diff --git a/setup.py b/setup.py index cb74bca..856bf34 100644 --- a/setup.py +++ b/setup.py @@ -79,7 +79,7 @@ script_deps = { 'flickrripper.py': ['Pillow<3.5.0' if PY26 else 'Pillow'], 'states_redirect.py': ['pycountry'], - 'weblinkchecker.py': ['memento_client>=0.5.1'], + 'weblinkchecker.py': ['memento_client>=0.5.1,!=0.6.0'], 'patrol.py': ['mwparserfromhell>=0.3.3'], } # flickrapi 1.4.4 installs a root logger in verbose mode; 1.4.5 fixes this.
pywikibot-commits@lists.wikimedia.org