Output the installed version of pip in the build log (#1007)

Since:
* "explicit is better than implicit"
* we'll soon be upgrading pip, and debugging breakage caused by upgrades
  will be easier if versions are visible in the build log

Closes #939.
This commit is contained in:
Ed Morley
2020-07-28 21:02:13 +01:00
parent e7c7dfdb26
commit 157ce25694
4 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ fi
# If a new Python has been installed or Pip isn't up to date:
if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_UPDATE* ]]; then
puts-step "Installing pip"
puts-step "Installing pip ${PIP_UPDATE}"
# Remove old installations.
rm -fr /app/.heroku/python/lib/python*/site-packages/pip-*