mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
v0.4.0-20140123
This commit is contained in:
parent
b992ffca1d
commit
73d5ea7426
3 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,14 @@
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 0.4.0-20140123
|
||||||
|
|
||||||
|
* pyenv: Always append the directory at the top of the `$PATH` to return proper value for `sys.executable` (#98)
|
||||||
|
* pyenv: Unset `GREP_OPTIONS` to avoid issues of conflicting options (#101)
|
||||||
|
* python-build: Install `pip` with using `ensurepip` if available
|
||||||
|
* python-build: Add support for framework installation (`--enable-framework`) of CPython (#55, #99)
|
||||||
|
* python-build: Import recent changes from ruby-build v20140110.1
|
||||||
|
* python-build: Import `bats` tests from ruby-build v20140110.1
|
||||||
|
|
||||||
#### 0.4.0-20140110.1
|
#### 0.4.0-20140110.1
|
||||||
|
|
||||||
* python-build: Fix build error of CPython 2.x on the platform where the `gcc` is llvm-gcc.
|
* python-build: Fix build error of CPython 2.x on the platform where the `gcc` is llvm-gcc.
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
version="0.4.0-20140110.1"
|
version="0.4.0-20140123"
|
||||||
|
|
||||||
if cd "$PYENV_ROOT" 2>/dev/null; then
|
if cd "$PYENV_ROOT" 2>/dev/null; then
|
||||||
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
||||||
|
|
|
@ -5,7 +5,7 @@ load test_helper
|
||||||
@test "blank invocation" {
|
@test "blank invocation" {
|
||||||
run pyenv
|
run pyenv
|
||||||
assert_success
|
assert_success
|
||||||
assert [ "${lines[0]}" == "pyenv 0.4.0-20140110.1" ]
|
assert [ "${lines[0]}" == "pyenv 0.4.0-20140123" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "invalid command" {
|
@test "invalid command" {
|
||||||
|
|
Loading…
Reference in a new issue