diff options
author | Monty Taylor <mordred@inaugust.com> | 2015-04-20 08:14:02 -0400 |
---|---|---|
committer | Monty Taylor <mordred@inaugust.com> | 2015-04-25 12:01:16 -0400 |
commit | ad16aa2f3edf1b63527108dd80f1dd02843b690b (patch) | |
tree | 9bfaaa6e8ef2e81f9ed40860fb6ecc1905812ee6 | |
parent | 52fcd502bf9d23aac88dae2b4b34d36f7aa26ea8 (diff) | |
download | pbr-ad16aa2f3edf1b63527108dd80f1dd02843b690b.tar.gz |
Stop re-invoking pip
It turns out we need to just inject into install_requires so that pip's
egg_info processing will do the right thing for dependencies.
Change-Id: Ia6c4725b153b19c3d7e422b1fa62b70cded686e2
-rw-r--r-- | pbr/packaging.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/pbr/packaging.py b/pbr/packaging.py index e266d4f..bd22609 100644 --- a/pbr/packaging.py +++ b/pbr/packaging.py @@ -179,27 +179,11 @@ class LocalInstall(install.install): Force a non-egg installed in the manner of single-version-externally-managed, which allows us to install manpages and config files. - - Because non-egg installs bypass the depend processing machinery, we - need to do our own. Because easy_install is evil, just use pip to - process our requirements files directly, which means we don't have to - do crazy extra processing. - - Bypass installation if --single-version-externally-managed is given, - so that behavior for packagers remains the same. """ command_name = 'install' def run(self): - option_dict = self.distribution.get_option_dict('pbr') - if (not self.single_version_externally_managed - and self.distribution.install_requires): - _pip_install( - self.distribution.dependency_links, - self.distribution.install_requires, self.root, - option_dict=option_dict) - return du_install.install.run(self) |