File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,14 @@ DEFAULT_PYTHON_VERSION="python-3.6.6"
53
53
LATEST_36=" python-3.6.6"
54
54
LATEST_37=" python-3.7.0"
55
55
LATEST_35=" python-3.5.6"
56
+ LATEST_34=" python-3.4.9"
56
57
LATEST_2=" python-2.7.15"
57
58
58
59
# Supported Python Branches
59
60
PY37=" python-3.7"
60
61
PY36=" python-3.6"
61
62
PY35=" python-3.5"
63
+ PY35=" python-3.4"
62
64
PY27=" python-2.7"
63
65
64
66
# Which stack is used (for binary downloading), if none is provided (e.g. outside of Heroku)?
Original file line number Diff line number Diff line change @@ -32,6 +32,13 @@ if curl --output /dev/null --silent --head --fail "$VENDORED_PYTHON"; then
32
32
echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes"
33
33
fi
34
34
fi
35
+ if [[ " $PYTHON_VERSION " == $PY34 * ]]; then
36
+ # security update note
37
+ if [ " $PYTHON_VERSION " != " $LATEST_34 " ]; then
38
+ puts-warn " $SECURITY_UPDATE " " $LATEST_34 "
39
+ echo " Learn More: https://devcenter.heroku.com/articles/python-runtimes"
40
+ fi
41
+ fi
35
42
if [[ " $PYTHON_VERSION " == $PY27 * ]]; then
36
43
# security update note
37
44
if [ " $PYTHON_VERSION " != " $LATEST_27 " ]; then
You can’t perform that action at this time.
0 commit comments