1 Commits

Author SHA1 Message Date
Yamashita, Yuu
a3bc42cb93 v1.0.0 (yyuu/pyenv#520) 2016-08-15 08:45:05 +00:00
3 changed files with 8 additions and 4 deletions

View File

@@ -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)

View File

@@ -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

View File

@@ -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"