mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
@@ -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`.
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
# //___/ / / / //___/ / // // / / || / /
|
||||
# // / / // ((____ // / / ||/ /
|
||||
|
||||
__version__ = '5.4.0'
|
||||
__version__ = '5.4.1'
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user