diff --git a/CHANGELOG.md b/CHANGELOG.md index af8773e1f80a49dcf171b8654061b17c423fc63a..a17d970c3fda36ecf7f6d26eebe6c2ab3f1c41ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Python Buildpack Changelog +# 115 + +Revert a pull request. + +- No longer using `sub_env` for `pip install` step. + # 114 - Bugfixes. @@ -8,7 +14,7 @@ Blacklisting `PYTHONHOME` and `PYTHONPATH` for older apps. Upgrades to nltk supp # 113 -- Updates to Pipenv support. +Updates to Pipenv support. # 112 diff --git a/bin/steps/pip-install b/bin/steps/pip-install index e49a923f2c28cba05fc676c5c8ea20d3c784966a..8d4d144cfb4ffe4d240e9f4d6e7b67d3b9964f78 100755 --- a/bin/steps/pip-install +++ b/bin/steps/pip-install @@ -6,10 +6,8 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then puts-step "Installing requirements with pip" set +e - BLACKLIST='PYTHONHOME|PYTHONPATH' - export BLACKLIST - sub_env /app/.heroku/python/bin/pip install -r "$BUILD_DIR/requirements.txt" --exists-action=w --src=/app/.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee "$WARNINGS_LOG" | cleanup | indent + /app/.heroku/python/bin/pip install -r "$BUILD_DIR/requirements.txt" --exists-action=w --src=/app/.heroku/src --disable-pip-version-check --no-cache-dir 2>&1 | tee "$WARNINGS_LOG" | cleanup | indent PIP_STATUS="${PIPESTATUS[0]}" set -e