jenkins-bot has submitted this change and it was merged.
Change subject: Lua support only exists for Linux ......................................................................
Lua support only exists for Linux
Change-Id: I1f0675f87b107297a2a8a09fd81dd2b7e29aaa7e --- M setup.py 1 file changed, 4 insertions(+), 2 deletions(-)
Approvals: John Vandenberg: Looks good to me, but someone else must approve XZise: Looks good to me, approved jenkins-bot: Verified
diff --git a/setup.py b/setup.py index 2886d88..b65d7c1 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,6 @@ extra_deps['csv'] = ['unicodecsv']
script_deps = { - 'script_wui.py': [irc_dep, 'lunatic-python', 'crontab'], - # Note: None of the 'lunatic-python' repos on github support MS Windows. 'flickrripper.py': ['Pillow'], 'states_redirect.py': ['pycountry'], } @@ -52,6 +50,10 @@ script_deps['flickrripper.py'].append('flickrapi' if sys.version_info[0] > 2 else 'flickrapi>=1.4.5')
+# lunatic-python is only available for Linux +if sys.platform.startswith('linux'): + script_deps['script_wui.py'] = [irc_dep, 'lunatic-python', 'crontab'] + dependency_links = [ 'https://git.wikimedia.org/zip/?r=pywikibot/externals/httplib2.git&format...', 'git+https://github.com/AlereDevices/lunatic-python.git#egg=lunatic-python',
pywikibot-commits@lists.wikimedia.org