diff options
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r-- | setuptools/command/install.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py index 6a34ab54..51d4ffe0 100644 --- a/setuptools/command/install.py +++ b/setuptools/command/install.py @@ -50,9 +50,9 @@ class install(_install): cmd.run() setuptools.bootstrap_install_from = None - - - + sub_commands = _install.sub_commands + [ + ('install_egg_info', lambda self: True), + ] |