From: Alexander Barton Date: Wed, 27 May 2015 18:20:54 +0000 (+0200) Subject: "5_dev_env": Don't set PIP_DOWNLOAD_CACHE any more X-Git-Url: https://arthur.barton.de/gitweb/?p=OhMyZshExtensions.git;a=commitdiff_plain;h=bba6e14761210a83824978861573b721a8ad5f3c "5_dev_env": Don't set PIP_DOWNLOAD_CACHE any more Since pip 6.0, "PIP_DOWNLOAD_CACHE" is deprecated and will be ignored: pip now respects the "XDG_CACHE_HOME" environment variable on its own. See . --- diff --git a/plugins/5_dev_env/5_dev_env.plugin.zsh b/plugins/5_dev_env/5_dev_env.plugin.zsh index 8ba7a97..a52aed1 100644 --- a/plugins/5_dev_env/5_dev_env.plugin.zsh +++ b/plugins/5_dev_env/5_dev_env.plugin.zsh @@ -17,7 +17,6 @@ unset ssh_wrapper # pip export PIP_REQUIRE_VIRTUALENV="true" -export PIP_DOWNLOAD_CACHE="$XDG_CACHE_HOME/pip" # virtualenv[wrapper] export WORKON_HOME="$XDG_CACHE_HOME/virtualenvs"