From 7b4835a98eb1eea0cdd808b01e8eb1a1765a4996 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 25 Feb 2016 14:45:50 -0500 Subject: [PATCH] Fix CACHED_PYTHON_STACK workflow; update default stack to cedar-14 --- bin/compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index 54d03816..45e96176 100755 --- a/bin/compile +++ b/bin/compile @@ -32,7 +32,7 @@ VIRTUALENV_LOC=".heroku/venv" LEGACY_TRIGGER="lib/python2.7" DEFAULT_PYTHON_VERSION="python-2.7.11" -DEFAULT_PYTHON_STACK="cedar" +DEFAULT_PYTHON_STACK="cedar-14" PYTHON_EXE="/app/.heroku/python/bin/python" PIP_VERSION="8.0.2" SETUPTOOLS_VERSION="19.6" @@ -147,7 +147,7 @@ fi if [ -f $CACHE_DIR/.heroku/python-stack ]; then CACHED_PYTHON_STACK=$(cat $CACHE_DIR/.heroku/python-stack) else - CACHED_PYTHON_STACK=$DEFAULT_PYTHON_STACK + CACHED_PYTHON_STACK=$STACK fi # If no runtime given, assume default version. -- GitLab