From c325cd1da9ecfe75d2f6c1bf451bbac6aa660871 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 22 Sep 2017 14:43:26 -0400 Subject: [PATCH] max of 8 subprocess Signed-off-by: Kenneth Reitz --- pipenv/environments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/environments.py b/pipenv/environments.py index 4fa6df40..3b9bb7ae 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -34,7 +34,7 @@ PIPENV_DONT_LOAD_ENV = bool(os.environ.get('PIPENV_DONT_LOAD_ENV')) PIPENV_YES = bool(os.environ.get('PIPENV_YES')) # Tells Pipenv how many subprocesses to use when installing. -PIPENV_MAX_SUBPROCESS = int(os.environ.get('PIPENV_MAX_SUBPROCESS', '32')) +PIPENV_MAX_SUBPROCESS = int(os.environ.get('PIPENV_MAX_SUBPROCESS', '8')) # User-configuraable max-depth for Pipfile searching. # Note: +1 because of a temporary bug in Pipenv.