mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2026-09-10 07:16:18 -04:00
v20151006
This commit is contained in:
parent
d0c77019cc
commit
6a6947659a
|
|
@ -1,5 +1,12 @@
|
|||
## Version History
|
||||
|
||||
#### 20151006
|
||||
|
||||
* Ignore user's site-packages on ensurepip/get-pip (#89)
|
||||
* Find `python-config` from source version if current version is a virtualenv
|
||||
* Fix pyenv-virtualenv-init script for fish where command was in string and not being evaluated (#98)
|
||||
* Add foolproof for `-p` argument. (yyuu/pyenv#98)
|
||||
|
||||
#### 20150719
|
||||
|
||||
* Add support for `conda` environments created by Anaconda/Miniconda (#91)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# -f/--force Install even if the version appears to be installed already
|
||||
#
|
||||
|
||||
PYENV_VIRTUALENV_VERSION="20150719"
|
||||
PYENV_VIRTUALENV_VERSION="20151006"
|
||||
|
||||
set -e
|
||||
[ -n "$PYENV_DEBUG" ] && set -x
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ load test_helper
|
|||
|
||||
setup() {
|
||||
export PYENV_ROOT="${TMP}/pyenv"
|
||||
export PYENV_VIRTUALENV_VERSION="20150719"
|
||||
export PYENV_VIRTUALENV_VERSION="20151006"
|
||||
}
|
||||
|
||||
@test "display virtualenv version" {
|
||||
|
|
|
|||
Loading…
Reference in a new issue