Skip to content

Commit

Permalink
python: only override virtualenv python if not set
Browse files Browse the repository at this point in the history
  • Loading branch information
belak committed Dec 15, 2017
1 parent d8d6b4d commit 4c31107
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion modules/autosuggestions/external
17 changes: 10 additions & 7 deletions modules/python/init.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,19 @@ if (( $+VIRTUALENVWRAPPER_VIRTUALENV || $+commands[virtualenv] )) && \
# in '$path' or in an alternative location on a Debian based system.
#
# If the python-path was manually specified, use that. Otherwise, if
# homebrew is installed we fall back to python3 then python2 in that
# order. This is needed to fix an issue with virtualenvwrapper as homebrew
# no longer shadows the system python.
# homebrew is installed and it wasn't overridden via environment variable
# we fall back to python3 then python2 in that order. This is needed to
# fix an issue with virtualenvwrapper as homebrew no longer shadows the
# system python.
zstyle -s ':prezto:module:python:virtualenvwrapper' python-path '_venv_python'
if [[ -n "$_venv_python" ]]; then
export VIRTUALENVWRAPPER_PYTHON=$_venv_python
elif (( $+commands[brew] )) && (( $+commands[python3] )); then
export VIRTUALENVWRAPPER_PYTHON=$commands[python3]
elif (( $+commands[brew] )) && (( $+commands[python2] )); then
export VIRTUALENVWRAPPER_PYTHON=$commands[python2]
elif [[ -z "$VIRTUALENVWRAPPER_PYTHON" ]] && (( $+commands[brew] )); then
if (( $+commands[python3] )); then
export VIRTUALENVWRAPPER_PYTHON=$commands[python3]
elif (( $+commands[python2] )); then
export VIRTUALENVWRAPPER_PYTHON=$commands[python2]
fi
fi

virtenv_sources=(
Expand Down

0 comments on commit 4c31107

Please sign in to comment.