diff options
author | Travis Oliphant <oliphant@enthought.com> | 2008-03-22 04:15:24 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2008-03-22 04:15:24 +0000 |
commit | f8fb34d270d33f268bc89ecc8f64322dc6d0a928 (patch) | |
tree | 6e02a19d016efce855de6208f6c9ee85cd6da2bc | |
parent | dd868d86c0080a2f73341fdd8da960c2af6318d9 (diff) | |
download | numpy-f8fb34d270d33f268bc89ecc8f64322dc6d0a928.tar.gz |
Comment out NotImplemented error when using setup tools.
-rw-r--r-- | numpy/distutils/core.py | 2 |
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() |