v20140615 (fixes #26)

This commit is contained in:
Yamashita Yuu
2014-06-15 20:20:29 +09:00
parent dcb5371f07
commit ea18a1b283
3 changed files with 10 additions and 5 deletions

View File

@@ -86,9 +86,9 @@ virtualenv will be created with given name based on current
version. version.
``` ```
$ pyenv version $ pyenv version
3.4.1 (set by /home/yyuu/.pyenv/version) 3.4.1 (set by /home/yyuu/.pyenv/version)
$ pyenv virtualenv venv34 $ pyenv virtualenv venv34
``` ```
@@ -128,6 +128,11 @@ You can set certain environment variables to control the pyenv-virtualenv.
## Version History ## Version History
#### 20140615
* Fix incompatibility issue of `pyenv activate` and `pyenv deactivate` (#26)
* Workaround for the issue with pyenv-which-ext (#26)
#### 20140614 #### 20140614
* Add `pyenv virtualenv-init` to enable auto-activation feature (#24) * Add `pyenv virtualenv-init` to enable auto-activation feature (#24)

View File

@@ -11,7 +11,7 @@
# -f/--force Install even if the version appears to be installed already # -f/--force Install even if the version appears to be installed already
# #
PYENV_VIRTUALENV_VERSION="20140614" PYENV_VIRTUALENV_VERSION="20140615"
set -e set -e
[ -n "$PYENV_DEBUG" ] && set -x [ -n "$PYENV_DEBUG" ] && set -x

View File

@@ -4,7 +4,7 @@ load test_helper
setup() { setup() {
export PYENV_ROOT="${TMP}/pyenv" export PYENV_ROOT="${TMP}/pyenv"
export PYENV_VIRTUALENV_VERSION="20140614" export PYENV_VIRTUALENV_VERSION="20140615"
} }
@test "display virtualenv version" { @test "display virtualenv version" {