Add find-links back to pip.conf

In https://review.openstack.org/522761 the find-links
configuration was mistakenly removed from pip.conf
which results in a broken integrated build. This
returns the configuration back.

Implements: blueprint python-build-install-simplification
Change-Id: I578b5eff4f07f0016d000dfb7cc90aa6ed78ed4d
Signed-off-by: Jesse Pretorius <jesse.pretorius@rackspace.co.uk>
This commit is contained in:
Jesse Pretorius 2017-11-29 09:13:59 +00:00
parent e036e6d1cc
commit 06bf2a9e07
1 changed files with 6 additions and 0 deletions

View File

@ -17,3 +17,9 @@ trusted-host =
[install]
upgrade = {{ pip_upgrade }}
{% if pip_lock_to_internal_repo and pip_links | length > 0 %}
find-links =
{% for pip_link in pip_links %}
{{ pip_link.link }}
{% endfor %}
{% endif %}