summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2008-03-22 04:15:24 +0000
committerTravis Oliphant <oliphant@enthought.com>2008-03-22 04:15:24 +0000
commitf8fb34d270d33f268bc89ecc8f64322dc6d0a928 (patch)
tree6e02a19d016efce855de6208f6c9ee85cd6da2bc
parentdd868d86c0080a2f73341fdd8da960c2af6318d9 (diff)
downloadnumpy-f8fb34d270d33f268bc89ecc8f64322dc6d0a928.tar.gz
Comment out NotImplemented error when using setup tools.
-rw-r--r--numpy/distutils/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/core.py b/numpy/distutils/core.py
index 842f6fbc3..20fc3eac1 100644
--- a/numpy/distutils/core.py
+++ b/numpy/distutils/core.py
@@ -97,7 +97,7 @@ def get_distribution(always=False):
# class is local to a function in setuptools.command.easy_install
if dist is not None and \
'DistributionWithoutHelpCommands' in repr(dist):
- raise NotImplementedError("setuptools not supported yet for numpy.scons branch")
+ #raise NotImplementedError("setuptools not supported yet for numpy.scons branch")
dist = None
if always and dist is None:
dist = NumpyDistribution()