pyenv/libexec/pyenv-version-name

56 lines
1.3 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
2013-01-18 03:41:41 -05:00
# Summary: Show the current Python version
set -e
[ -n "$PYENV_DEBUG" ] && set -x
2014-01-02 08:26:22 -05:00
if [ -z "$PYENV_VERSION" ]; then
PYENV_VERSION_FILE="$(pyenv-version-file)"
2014-01-02 12:05:40 -05:00
PYENV_VERSION="$(pyenv-version-file-read "$PYENV_VERSION_FILE" || true)"
fi
OLDIFS="$IFS"
IFS=$'\n' scripts=(`pyenv-hooks version-name`)
IFS="$OLDIFS"
for script in "${scripts[@]}"; do
source "$script"
done
2014-01-02 12:05:40 -05:00
if [ -z "$PYENV_VERSION" ] || [ "$PYENV_VERSION" = "system" ]; then
echo "system"
exit
fi
version_exists() {
local version="$1"
2013-02-06 02:05:29 -05:00
[ -d "${PYENV_ROOT}/versions/${version}" ]
}
2014-01-02 12:05:40 -05:00
versions=()
OLDIFS="$IFS"
{ IFS=:
any_not_installed=0
2014-01-02 12:05:40 -05:00
for version in ${PYENV_VERSION}; do
# Remove the explicit 'python-' prefix from versions like 'python-3.12'.
normalised_version="${version#python-}"
if version_exists "${normalised_version}" || [ "$version" = "system" ]; then
versions=("${versions[@]}" "${normalised_version}")
elif resolved_version="$(pyenv-latest -b "${normalised_version}")"; then
versions=("${versions[@]}" "${resolved_version}")
2014-01-02 12:05:40 -05:00
else
echo "pyenv: version \`$version' is not installed (set by $(pyenv-version-origin))" >&2
any_not_installed=1
2014-01-02 12:05:40 -05:00
fi
done
}
IFS="$OLDIFS"
2014-01-02 12:05:40 -05:00
OLDIFS="$IFS"
{ IFS=:
echo "${versions[*]}"
}
IFS="$OLDIFS"
if [ "$any_not_installed" = 1 ]; then
exit 1
fi