mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-09 03:53:54 -05:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3bc42cb93 |
@@ -1,9 +1,13 @@
|
|||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 1.0.0
|
||||||
|
|
||||||
|
* Use similar versioning scheme as pyenv; YYYYMMDD -> X.Y.Z
|
||||||
|
|
||||||
#### 20160716
|
#### 20160716
|
||||||
|
|
||||||
* Suppress activate/deactivate messages by default (#169, #170, #171)
|
* 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 `source` in favor of `.` for `fish` (#175)
|
||||||
* Use `python -m venv` instead of `pyvenv` due to deprecation of `pyvenv` after 3.6 (#184, #185)
|
* 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
|
# -f/--force Install even if the version appears to be installed already
|
||||||
#
|
#
|
||||||
|
|
||||||
PYENV_VIRTUALENV_VERSION="20160716"
|
PYENV_VIRTUALENV_VERSION="1.0.0"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ setup() {
|
|||||||
run pyenv-virtualenv --version
|
run pyenv-virtualenv --version
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
[[ "$output" == "pyenv-virtualenv 20"*" (virtualenv 1.11)" ]]
|
[[ "$output" == "pyenv-virtualenv "?.?.?" (virtualenv 1.11)" ]]
|
||||||
|
|
||||||
unstub pyenv-prefix
|
unstub pyenv-prefix
|
||||||
unstub pyenv-exec
|
unstub pyenv-exec
|
||||||
@@ -30,7 +30,7 @@ setup() {
|
|||||||
run pyenv-virtualenv --version
|
run pyenv-virtualenv --version
|
||||||
|
|
||||||
assert_success
|
assert_success
|
||||||
[[ "$output" == "pyenv-virtualenv 20"*" (python -m venv)" ]]
|
[[ "$output" == "pyenv-virtualenv "?.?.?" (python -m venv)" ]]
|
||||||
|
|
||||||
unstub pyenv-prefix
|
unstub pyenv-prefix
|
||||||
teardown_m_venv "3.4.1"
|
teardown_m_venv "3.4.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user