Skip to content

Commit

Permalink
Reflect pyenv-latest switch change in 2.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
native-api committed Jul 21, 2024
1 parent b90bd92 commit 6179ac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/pyenv-virtualenv
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ else
fi

if [[ -n "${VERSION_NAME}" ]] && command -v pyenv-latest >/dev/null; then
VERSION_NAME="$(pyenv-latest -q "${VERSION_NAME}" || echo "${VERSION_NAME}")"
VERSION_NAME="$(pyenv-latest -f "${VERSION_NAME}")"
fi

if [ -z "${VERSION_NAME}" ] || [ -z "${VIRTUALENV_NAME}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion test/virtualenv.bats
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ OUT
stub pyenv-exec "python -s -m ensurepip : false"
stub pyenv-exec "python -s */get-pip.py : true"
stub curl true
stub pyenv-latest "-q 2.7 : echo 2.7.11"
stub pyenv-latest "-f 2.7 : echo 2.7.11"

run pyenv-virtualenv "2.7" "venv"

Expand Down

0 comments on commit 6179ac7

Please sign in to comment.