File tree 3 files changed +8
-4
lines changed 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Python Buildpack Changelog
2
2
3
+ ## v77 (2016-02-10)
4
+
5
+ Improvements to warnings and minor bugfix.
6
+
3
7
## v76 (2016-02-08)
4
8
5
9
Improved Django collectstatic support.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ SETUPTOOLS_VERSION="19.6"
39
39
40
40
# Common Problem Warnings
41
41
export WARNINGS_LOG=$( mktemp)
42
- export DEFAULT_PYTHON_VERSION
42
+ export RECOMMENDED_PYTHON_VERSION= $ DEFAULT_PYTHON_VERSION
43
43
44
44
# Setup bpwatch
45
45
export PATH=$PATH :$ROOT_DIR /vendor/bpwatch
@@ -57,8 +57,8 @@ export PATH=$PATH:$ROOT_DIR/vendor/pip-pop
57
57
58
58
# Sanitizing environment variables.
59
59
unset GIT_DIR PYTHONHOME PYTHONPATH LD_LIBRARY_PATH LIBRARY_PATH
60
- unset RECEIVE_DATA SOURCE_VERSION RUN_KEY BUILD_INFO DEPLOY
61
- unset LOG_TOKEN DYNO CYTOKINE_LOG_FILE GEM_PATH
60
+ unset RECEIVE_DATA RUN_KEY BUILD_INFO DEPLOY LOG_TOKEN DYNO
61
+ unset CYTOKINE_LOG_FILE GEM_PATH
62
62
63
63
# Setup buildpack instrumentation.
64
64
bpwatch init $LOGPLEX_KEY
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ old-platform() {
5
5
echo
6
6
puts-warn "Hello! It looks like your application is using an outdated version of Python."
7
7
puts-warn "This caused the security warning you saw above during the 'pip install' step."
8
- puts-warn "We recommend '$DEFAULT_PYTHON_VERSION ', which you can specify in a 'runtime.txt' file."
8
+ puts-warn "We recommend '$RECOMMENDED_PYTHON_VERSION ', which you can specify in a 'runtime.txt' file."
9
9
puts-warn " -- Much Love, Heroku."
10
10
fi
11
11
}
You can’t perform that action at this time.
0 commit comments