diff --git a/pipenv/environments.py b/pipenv/environments.py index 1a852ed9..ceadeb89 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -37,4 +37,4 @@ if os.name == 'nt': PIPENV_NOSPIN = True # Tells pipenv how long to wait for virtualenvs to be created in seconds -PIPENV_TIMEOUT = os.environ.get('PIPENV_TIMEOUT') or 120 +PIPENV_TIMEOUT = int(os.environ.get('PIPENV_TIMEOUT')) or 120