mirror of
https://github.com/pyenv/pyenv-virtualenv.git
synced 2025-11-09 03:53:54 -05:00
release v20130307
This commit is contained in:
@@ -37,9 +37,9 @@ under `~/.pyenv/versions`.
|
|||||||
|
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
#### 2013XXYY
|
#### 20130307
|
||||||
|
|
||||||
* Preparing for renaming project; `s/python-virtualenv/pyenv-virtualenv/g`
|
* Rename the project; `s/python-virtualenv/pyenv-virtualenv/g`
|
||||||
* The `pyenv-virtualenv` script is not depending on `python-virtualenv` now.
|
* The `pyenv-virtualenv` script is not depending on `python-virtualenv` now.
|
||||||
`python-virtualenv` will left for compatibility and will not continue for future releases.
|
`python-virtualenv` will left for compatibility and will not continue for future releases.
|
||||||
* Update virtualenv version; 1.8.2 -> 1.8.4
|
* Update virtualenv version; 1.8.2 -> 1.8.4
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
# -v/--verbose Verbose mode: print compilation status to stdout
|
# -v/--verbose Verbose mode: print compilation status to stdout
|
||||||
#
|
#
|
||||||
|
|
||||||
PYENV_VIRTUALENV_VERSION="20130218"
|
PYENV_VIRTUALENV_VERSION="20130307"
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
@@ -131,7 +131,7 @@ VIRTUALENV_PATH="${PYENV_ROOT}/versions/${VIRTUALENV_NAME}"
|
|||||||
|
|
||||||
# create virtualenv
|
# create virtualenv
|
||||||
VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/pyenv-virtualenv/virtualenv.py"
|
VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/pyenv-virtualenv/virtualenv.py"
|
||||||
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/python-libexec/virtualenv.py" # backward compatibility before v20130218
|
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/python-libexec/virtualenv.py" # backward compatibility before v20130307
|
||||||
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/virtualenv.py"
|
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/virtualenv.py"
|
||||||
"${PYTHON_BIN}" "${VIRTUALENV}" "${VIRTUALENV_OPTIONS[@]}" "${VIRTUALENV_PATH}"
|
"${PYTHON_BIN}" "${VIRTUALENV}" "${VIRTUALENV_OPTIONS[@]}" "${VIRTUALENV_PATH}"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
PYTHON_VIRTUALENV_VERSION="20130218"
|
PYTHON_VIRTUALENV_VERSION="20130307"
|
||||||
|
|
||||||
set -E
|
set -E
|
||||||
exec 3<&2 # preserve original stderr at fd 3
|
exec 3<&2 # preserve original stderr at fd 3
|
||||||
|
|||||||
Reference in New Issue
Block a user