Replaced pyvenv by -m venv

This commit is contained in:
Yamashita, Yuu
2016-07-16 06:50:50 +00:00
parent 99a90ab774
commit 8c7dd01954
13 changed files with 50 additions and 51 deletions

View File

@@ -137,13 +137,13 @@ teardown_virtualenv() {
rm -fr "${PYENV_ROOT}/versions/$1"
}
setup_pyvenv() {
setup_m_venv() {
create_executable "$1" "python"
create_executable "$1" "activate"
remove_executable "$1" "conda"
}
teardown_pyvenv() {
teardown_m_venv() {
rm -fr "${PYENV_ROOT}/versions/$1"
}