Merge "Ensure that pip.conf templates variables properly"

This commit is contained in:
Zuul 2018-04-23 10:44:47 +00:00 committed by Gerrit Code Review
commit 737c9ee415
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ trusted-host =
{% endif %}
[install]
upgrade = {{ pip_upgrade }}
upgrade = {{ (pip_upgrade | bool) | lower }}
upgrade-strategy = {{ pip_upgrade_strategy }}
pre = {{ pip_enable_pre_releases }}
pre = {{ (pip_enable_pre_releases | bool) | lower }}
{% if pip_links | length > 0 %}
find-links =
{% for pip_link in pip_links %}