summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-05-04 09:31:35 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-05-04 09:31:35 -0400
commit44c5e9e0964152cf4e4f1ecc9c8cee5e752c0d65 (patch)
tree0ef0b3d806836f59aa70360721412808b92483ff /setuptools/command
parentec801b7955028eeb36a4093735f263049eb3c50b (diff)
downloadpython-setuptools-bitbucket-44c5e9e0964152cf4e4f1ecc9c8cee5e752c0d65.tar.gz
Restore install._install with a comment to capture its requirement on earlier NumPy versions. Fixes #199.
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/install.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py
index 3425dbf7..1f489734 100644
--- a/setuptools/command/install.py
+++ b/setuptools/command/install.py
@@ -6,6 +6,10 @@ import platform
import distutils.command.install as orig
from distutils.errors import DistutilsArgError
+# Prior to numpy 1.9, NumPy relies on the '_install' name, so provide it for
+# now. See https://bitbucket.org/pypa/setuptools/issue/199/
+_install = orig.install
+
class install(orig.install):
"""Use easy_install to install the package, w/dependencies"""