v20150913

This commit is contained in:
Josh Friend 2015-09-13 11:03:52 -04:00
parent e6090f00f3
commit c452da8084
3 changed files with 9 additions and 2 deletions

View file

@ -1,5 +1,12 @@
## Version History ## Version History
### 20150913
* python-build: Add CPython 3.5.0
* python-build: Remove CPython 3.5.0 release candidates
* python-build: Fixed anaconda3 repo's paths (#439)
* python-build: Add miniconda-3.16.0 and miniconda3-3.16.0 (#435)
### 20150901 ### 20150901
* python-build: Add CPython 3.5.0 release candidates; 3.5.0rc1 and 3.5.0rc2 * python-build: Add CPython 3.5.0 release candidates; 3.5.0rc1 and 3.5.0rc2

View file

@ -12,7 +12,7 @@
set -e set -e
[ -n "$PYENV_DEBUG" ] && set -x [ -n "$PYENV_DEBUG" ] && set -x
version="20150901" version="20150913"
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)"

View file

@ -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 20150901" ] assert [ "${lines[0]}" == "pyenv 20150913" ]
} }
@test "invalid command" { @test "invalid command" {