From 3a43439a33e44529ecf5107aa5f63672fc9c44f2 Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Sat, 23 Aug 2008 22:29:14 -0700 Subject: [PATCH] Skipping a few tests related to the wx frontend that fail on Windows. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 19e3187e8..a91c49543 100755 --- a/setup.py +++ b/setup.py @@ -140,15 +140,15 @@ if 'setuptools' in sys.modules: 'ipythonx = IPython.frontend.wx.ipythonx:main' ] } - setup_args["extras_require"] = dict( + setup_args['extras_require'] = dict( kernel = [ - "zope.interface>=3.4.1", - "Twisted>=8.0.1", - "foolscap>=0.2.6" + 'zope.interface>=3.4.1', + 'Twisted>=8.0.1', + 'foolscap>=0.2.6' ], - doc=['Sphinx>=0.3','pygments'], + doc='Sphinx>=0.3', test='nose>=0.10.1', - security=["pyOpenSSL>=0.6"] + security='pyOpenSSL>=0.6' ) # Allow setuptools to handle the scripts scripts = []