changeset 1464:fecd502743b3

setup: wx is not more a dependency since wix has been deprecated
author souliane <souliane@mailoo.org>
date Thu, 20 Aug 2015 10:22:46 +0200
parents 364dcdae2bff
children cbf38047ca60
files setup.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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