From d917f27056ef0ebe9baca93faf8481f8d100f47f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 26 Sep 2017 11:08:44 -0400 Subject: [PATCH] update to environments.py Signed-off-by: Kenneth Reitz --- pipenv/environments.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pipenv/environments.py b/pipenv/environments.py index ca65ee0e..7f870422 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -39,13 +39,12 @@ PIPENV_MAX_SUBPROCESS = int(os.environ.get('PIPENV_MAX_SUBPROCESS', '8')) PIPENV_MAX_DEPTH = int(os.environ.get('PIPENV_MAX_DEPTH', '3')) + 1 # Tells Pipenv to use the virtualenv-provided pip instead. +PIPENV_VIRTUALENV = None PIPENV_USE_SYSTEM = False if 'PIPENV_ACTIVE' not in os.environ: if 'PIPENV_IGNORE_VIRTUALENVS' not in os.environ: PIPENV_VIRTUALENV = os.environ.get('VIRTUAL_ENV') PIPENV_USE_SYSTEM = bool(os.environ.get('VIRTUAL_ENV')) -else: - PIPENV_VIRTUALENV = None # Tells Pipenv to use hashing mode. PIPENV_USE_HASHES = True