mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
commit
9100243866
3 changed files with 4 additions and 3 deletions
1
plugins/.gitignore
vendored
1
plugins/.gitignore
vendored
|
@ -2,3 +2,4 @@
|
|||
!/.gitignore
|
||||
!/version-ext-compat
|
||||
!/python-build
|
||||
/python-build/test/build
|
||||
|
|
|
@ -2025,7 +2025,7 @@ build_package_ensurepip() {
|
|||
ensurepip_opts="--altinstall"
|
||||
fi
|
||||
# FIXME: `--altinstall` with `get-pip.py`
|
||||
"$PYTHON_BIN" -s -m ensurepip ${ensurepip_opts} 1>/dev/null 2>&1 || build_package_get_pip "$@" || return 1
|
||||
"$PYTHON_BIN" -I -m ensurepip ${ensurepip_opts} 1>/dev/null 2>&1 || build_package_get_pip "$@" || return 1
|
||||
build_package_symlink_version_suffix
|
||||
}
|
||||
|
||||
|
|
|
@ -200,7 +200,7 @@ OUT
|
|||
assert_success
|
||||
|
||||
assert_build_log <<OUT
|
||||
python -s -m ensurepip
|
||||
python -I -m ensurepip
|
||||
OUT
|
||||
}
|
||||
|
||||
|
@ -218,7 +218,7 @@ OUT
|
|||
assert_success
|
||||
|
||||
assert_build_log <<OUT
|
||||
python -s -m ensurepip --altinstall
|
||||
python -I -m ensurepip --altinstall
|
||||
OUT
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue