mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2026-09-10 07:16:18 -04:00
v1.0.0 (yyuu/pyenv#520)
This commit is contained in:
parent
0fd8a161e6
commit
a3bc42cb93
|
|
@ -1,9 +1,13 @@
|
|||
## Version History
|
||||
|
||||
#### 1.0.0
|
||||
|
||||
* Use similar versioning scheme as pyenv; YYYYMMDD -> X.Y.Z
|
||||
|
||||
#### 20160716
|
||||
|
||||
* Suppress activate/deactivate messages by default (#169, #170, #171)
|
||||
+ Source conda package activate/deactivat scripts if exist (#173)
|
||||
* Source conda package activate/deactivat scripts if exist (#173)
|
||||
* Use `source` in favor of `.` for `fish` (#175)
|
||||
* Use `python -m venv` instead of `pyvenv` due to deprecation of `pyvenv` after 3.6 (#184, #185)
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
# -f/--force Install even if the version appears to be installed already
|
||||
#
|
||||
|
||||
PYENV_VIRTUALENV_VERSION="20160716"
|
||||
PYENV_VIRTUALENV_VERSION="1.0.0"
|
||||
|
||||
set -e
|
||||
[ -n "$PYENV_DEBUG" ] && set -x
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ setup() {
|
|||
run pyenv-virtualenv --version
|
||||
|
||||
assert_success
|
||||
[[ "$output" == "pyenv-virtualenv 20"*" (virtualenv 1.11)" ]]
|
||||
[[ "$output" == "pyenv-virtualenv "?.?.?" (virtualenv 1.11)" ]]
|
||||
|
||||
unstub pyenv-prefix
|
||||
unstub pyenv-exec
|
||||
|
|
@ -30,7 +30,7 @@ setup() {
|
|||
run pyenv-virtualenv --version
|
||||
|
||||
assert_success
|
||||
[[ "$output" == "pyenv-virtualenv 20"*" (python -m venv)" ]]
|
||||
[[ "$output" == "pyenv-virtualenv "?.?.?" (python -m venv)" ]]
|
||||
|
||||
unstub pyenv-prefix
|
||||
teardown_m_venv "3.4.1"
|
||||
|
|
|
|||
Loading…
Reference in a new issue