Skip to content
Snippets Groups Projects
Commit f86e8079 authored by Kenneth Reitz's avatar Kenneth Reitz Committed by GitHub
Browse files

Blacklist for old apps (#466)


* fixed the bug for pypy-5.8.0

* update changelog

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>

* blacklist for old apps

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>

* only blacklist pythonhome/path

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>

* updated changelog

Signed-off-by: default avatarKenneth Reitz <me@kennethreitz.org>
parent 36c6f5e3
No related branches found
Tags v114
No related merge requests found
# Python Buildpack Changelog # Python Buildpack Changelog
# 114
- Bugfixes.
Blacklisting `PYTHONHOME` and `PYTHONPATH` for older apps. Upgrades to nltk support.
# 113 # 113
- Updates to Pipenv support. - Updates to Pipenv support.
......
...@@ -6,6 +6,9 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then ...@@ -6,6 +6,9 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
puts-step "Installing requirements with pip" puts-step "Installing requirements with pip"
set +e 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 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
PIP_STATUS="${PIPESTATUS[0]}" PIP_STATUS="${PIPESTATUS[0]}"
set -e set -e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment