From 8a91843dd3baadfebf9415ab122ce56af98a756b Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Thu, 16 Jun 2011 10:58:00 +0100 Subject: [PATCH] Don't try to install IPython.config.default (no longer there). --- setupbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setupbase.py b/setupbase.py index efec6f3fd..20e43d1c5 100644 --- a/setupbase.py +++ b/setupbase.py @@ -103,7 +103,7 @@ def find_packages(): Find all of IPython's packages. """ packages = ['IPython'] - add_package(packages, 'config', tests=True, others=['default','profile']) + add_package(packages, 'config', tests=True, others=['profile']) add_package(packages, 'core', tests=True) add_package(packages, 'deathrow', tests=True) add_package(packages, 'extensions')