mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Revert "Avoid choosing virtualenv when building PyPy from source"
This reverts commit 63c00d9989
.
This commit is contained in:
parent
63c00d9989
commit
fc23323ed4
1 changed files with 2 additions and 6 deletions
|
@ -207,12 +207,8 @@ if [ -z "${PYENV_BOOTSTRAP_VERSION}" ]; then
|
|||
else
|
||||
for version in $(pyenv-versions --bare | sort -r); do
|
||||
if [[ "${version}" == "2.7"* ]]; then
|
||||
if [ -f "$(pyenv-prefix "${version}")/bin/activate" ]; then
|
||||
: # avoid choosing virtualenv since it may not have some necessary modules (e.g. cffi, pycparser)
|
||||
else
|
||||
PYENV_BOOTSTRAP_VERSION="$version"
|
||||
break
|
||||
fi
|
||||
PYENV_BOOTSTRAP_VERSION="$version"
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue