mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-15 15:03:53 -05:00
v20150526
First release after my son's birth....
This commit is contained in:
@@ -126,7 +126,6 @@ Removing the directory in `~/.pyenv/versions` will delete the virtualenv, or you
|
|||||||
|
|
||||||
pyenv uninstall my-virtual-env
|
pyenv uninstall my-virtual-env
|
||||||
|
|
||||||
|
|
||||||
### virtualenv and pyvenv
|
### virtualenv and pyvenv
|
||||||
|
|
||||||
There is a [venv](http://docs.python.org/3/library/venv.html) module available
|
There is a [venv](http://docs.python.org/3/library/venv.html) module available
|
||||||
@@ -157,6 +156,12 @@ You can set certain environment variables to control pyenv-virtualenv.
|
|||||||
|
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 20150526
|
||||||
|
|
||||||
|
* Use `typeset -g` with `precmd_functions` (#75)
|
||||||
|
* activate: display setup instructions only with `PYENV_VIRTUALENV_INIT=0` (#78)
|
||||||
|
* Ignore failure of pyenv activate (#68)
|
||||||
|
|
||||||
#### 20150119
|
#### 20150119
|
||||||
|
|
||||||
* Ignore errors from `pyenv-version-name` since it might fail if there is configuration error (yyuu/pyenv#291)
|
* Ignore errors from `pyenv-version-name` since it might fail if there is configuration error (yyuu/pyenv#291)
|
||||||
|
|||||||
@@ -9,7 +9,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="20150119"
|
PYENV_VIRTUALENV_VERSION="20150526"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ load test_helper
|
|||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
export PYENV_ROOT="${TMP}/pyenv"
|
export PYENV_ROOT="${TMP}/pyenv"
|
||||||
export PYENV_VIRTUALENV_VERSION="20150119"
|
export PYENV_VIRTUALENV_VERSION="20150526"
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "display virtualenv version" {
|
@test "display virtualenv version" {
|
||||||
|
|||||||
Reference in New Issue
Block a user