From 8b88d655c4f68ccc685744060b5aabc0301d7c33 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Wed, 15 Mar 2017 16:48:05 -0400 Subject: [PATCH] remove venv support --- bin/compile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/compile b/bin/compile index 482e3485..73ed5992 100755 --- a/bin/compile +++ b/bin/compile @@ -135,7 +135,6 @@ bpwatch start restore_cache cp -R $CACHE_DIR/.heroku/python-stack .heroku/ &> /dev/null || true cp -R $CACHE_DIR/.heroku/python-version .heroku/ &> /dev/null || true cp -R $CACHE_DIR/.heroku/vendor .heroku/ &> /dev/null || true - cp -R $CACHE_DIR/.heroku/venv .heroku/ &> /dev/null || true if [[ -d $CACHE_DIR/.heroku/src ]]; then cp -R $CACHE_DIR/.heroku/src .heroku/ &> /dev/null || true fi @@ -150,7 +149,6 @@ if [[ $BUILD_DIR != '/app' ]]; then # we will not remove these later so subsequent buildpacks can still invoke it ln -nsf $BUILD_DIR/.heroku/python /app/.heroku/python ln -nsf $BUILD_DIR/.heroku/vendor /app/.heroku/vendor - ln -nsf $BUILD_DIR/.heroku/venv /app/.heroku/venv # Note: .heroku/src is copied in later. fi @@ -234,7 +232,6 @@ bpwatch start dump_cache rm -rf $CACHE_DIR/.heroku/python-version rm -rf $CACHE_DIR/.heroku/python-stack rm -rf $CACHE_DIR/.heroku/vendor - rm -rf $CACHE_DIR/.heroku/venv rm -rf $CACHE_DIR/.heroku/src mkdir -p $CACHE_DIR/.heroku @@ -242,7 +239,6 @@ bpwatch start dump_cache cp -R .heroku/python-version $CACHE_DIR/.heroku/ cp -R .heroku/python-stack $CACHE_DIR/.heroku/ &> /dev/null || true cp -R .heroku/vendor $CACHE_DIR/.heroku/ &> /dev/null || true - cp -R .heroku/venv $CACHE_DIR/.heroku/ &> /dev/null || true if [[ -d .heroku/src ]]; then cp -R .heroku/src $CACHE_DIR/.heroku/ &> /dev/null || true fi -- GitLab