Skip to content

Commit 0be9d48

Browse files
committed
add missing vars for python step
1 parent 4750639 commit 0be9d48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/compile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,17 @@ LATEST_2="python-2.7.15"
6060
PY37="python-3.7"
6161
PY36="python-3.6"
6262
PY35="python-3.5"
63-
PY35="python-3.4"
63+
PY34="python-3.4"
6464
PY27="python-2.7"
6565

6666
# Which stack is used (for binary downloading), if none is provided (e.g. outside of Heroku)?
6767
DEFAULT_PYTHON_STACK="cedar-14"
6868
# If pip doesn't match this version (the version we install), run the installer.
6969
PIP_UPDATE="9.0.2"
7070

71-
export DEFAULT_PYTHON_VERSION DEFAULT_PYTHON_STACK PIP_UPDATE LATEST_2 LATEST_36 LATEST_37
72-
export PY37 PY36 PY35 PY27
71+
export DEFAULT_PYTHON_VERSION DEFAULT_PYTHON_STACK PIP_UPDATE
72+
export LATEST_2 LATEST_36 LATEST_37 LATEST_35 LATEST_34
73+
export PY37 PY36 PY35 PY27 PY34
7374

7475
# Common Problem Warnings:
7576
# This section creates a temporary file in which to stick the output of `pip install`.

bin/steps/python

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ else
5252
exit 1
5353
fi
5454

55-
5655
if [[ "$STACK" != "$CACHED_PYTHON_STACK" ]]; then
5756
puts-step "Stack has changed from $CACHED_PYTHON_STACK to $STACK, clearing cache"
5857
rm -fr .heroku/python-stack .heroku/python-version .heroku/python .heroku/vendor .heroku/python .heroku/python-sqlite3-version

0 commit comments

Comments
 (0)