mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
v20140705 (fixes #204)
This commit is contained in:
parent
a661e14580
commit
b8a7de8a3c
3 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,10 @@
|
|||
## Version History
|
||||
|
||||
#### 20140705
|
||||
|
||||
* python-build: Add new CPython release; 2.7.8 (#201)
|
||||
* python-build: Support `SETUPTOOLS_VERSION` and `PIP_VERSION` to allow installing specific version of setuptools/pip (#202)
|
||||
|
||||
#### 20140628
|
||||
|
||||
* python-build: Add new Anaconda releases; anaconda-2.0.1, anaconda3-2.0.1 (#195)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
set -e
|
||||
[ -n "$PYENV_DEBUG" ] && set -x
|
||||
|
||||
version="20140628"
|
||||
version="20140705"
|
||||
|
||||
if cd "$PYENV_ROOT" 2>/dev/null; then
|
||||
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
||||
|
|
|
@ -5,7 +5,7 @@ load test_helper
|
|||
@test "blank invocation" {
|
||||
run pyenv
|
||||
assert_success
|
||||
assert [ "${lines[0]}" == "pyenv 20140628" ]
|
||||
assert [ "${lines[0]}" == "pyenv 20140705" ]
|
||||
}
|
||||
|
||||
@test "invalid command" {
|
||||
|
|
Loading…
Reference in a new issue