jenkins-bot has submitted this change and it was merged.
Change subject: Add mwparserfromhell as dependency ......................................................................
Add mwparserfromhell as dependency
Even though mwparserfromhell is technically optional, having mwpfh as dependency will make sure people who setup.py install pywikibot will have it installed.
People using pwb.py are not affected by this, although we should probably add a warning at some point.
Change-Id: Iaa77c0f7e0f7885f08c90581bde86c2c2aa88720 --- M setup.py 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/setup.py b/setup.py index 580f9b1..cf14a97 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,8 @@ for package in find_packages() if package.startswith('pywikibot.')], install_requires=[ - 'httplib2>=0.6.0' + 'httplib2>=0.6.0', + 'mwparserfromhell>=0.3.3' ], dependency_links=[ 'https://git.wikimedia.org/zip/?r=pywikibot/externals/httplib2.git&format...'
pywikibot-commits@lists.wikimedia.org