Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-06 16:58:34 -04:00
parent dbd4edf5c6
commit a82cac8d7b
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -1,3 +1,6 @@
5.4.1:
- Fix for packaging.
- $PIPENV_SKIP_VALIDATION.
5.4.0:
- Automatically load PATH from virtualenv, before running `pipenv shell`.
- Addition of `pipenv lock --verbose`.
+1 -1
View File
@@ -3,4 +3,4 @@
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = '5.4.0'
__version__ = '5.4.1'
+1 -1
View File
@@ -29,7 +29,7 @@ PIPENV_USE_SYSTEM = os.environ.get('VIRTUAL_ENV') if 'PIPENV_IGNORE_VIRTUALENVS'
PIPENV_USE_HASHES = os.environ.get('PIPENV_USE_HASHES')
# Tells pipenv to skip case-checking (slow internet connections).
PIPENV_SKIP_VALIDATION = os.environ.get('PIPENV_USE_HASHES')
PIPENV_SKIP_VALIDATION = os.environ.get('PIPENV_SKIP_VALIDATION')
# Use shell compatibility mode when using venv in project mode.
if PIPENV_VENV_IN_PROJECT: