From f8fb34d270d33f268bc89ecc8f64322dc6d0a928 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Sat, 22 Mar 2008 04:15:24 +0000 Subject: Comment out NotImplemented error when using setup tools. --- numpy/distutils/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.1