remove PIPENV_MAX_DEPTH workaround

This commit is contained in:
Ofek Lev
2017-09-28 23:10:59 -04:00
committed by GitHub
parent 533587ee10
commit 19929820a9
+1 -2
View File
@@ -35,8 +35,7 @@ PIPENV_YES = bool(os.environ.get('PIPENV_YES'))
PIPENV_MAX_SUBPROCESS = int(os.environ.get('PIPENV_MAX_SUBPROCESS', '8'))
# User-configurable max-depth for Pipfile searching.
# Note: +1 because of a temporary bug in Pipenv.
PIPENV_MAX_DEPTH = int(os.environ.get('PIPENV_MAX_DEPTH', '3')) + 1
PIPENV_MAX_DEPTH = int(os.environ.get('PIPENV_MAX_DEPTH', '3'))
# Tells Pipenv to use the virtualenv-provided pip instead.
PIPENV_VIRTUALENV = None