# HG changeset patch # User souliane # Date 1440058966 -7200 # Node ID fecd502743b327987bc9fed72b8a7d0acbf4c2d9 # Parent 364dcdae2bffbfaabd663d8756e2e6dbf52bfe04 setup: wx is not more a dependency since wix has been deprecated diff -r 364dcdae2bff -r fecd502743b3 setup.py --- a/setup.py Wed Sep 03 20:55:54 2014 +0200 +++ b/setup.py Thu Aug 20 10:22:46 2015 +0200 @@ -226,15 +226,15 @@ This ugly stuff is necessary as distributions are not installed correctly with setuptools/distribute Hope to remove this at some point""" - #modules_tocheck = ['twisted', 'twisted.words', 'twisted.web', 'wx', 'urwid'] + #modules_tocheck = ['twisted', 'twisted.words', 'twisted.web', 'urwid'] modules_tocheck = ['gobject'] # XXX: python-gobject is not up-to-date in PyPi if NO_X_OPT not in install_opt: - modules_tocheck.append('wx') # wx is the only one to be really difficult to install + # append to modules_tocheck the packages needed by graphical frontends + pass package = {'twisted': 'python-twisted-core', 'twisted.words': 'python-twisted-words', 'twisted.web': 'python-twisted-web', - 'wx': 'python-wxgtk2.8', 'urwid': 'python-urwid', 'gobject': 'python-gobject', 'mercurial': 'mercurial'} # this dict map dependencies to packages names for debian distributions