mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Move PIPENV_VERBOSITY to correct place in alphabet
Oops.
This commit is contained in:
committed by
Tzu-ping Chung
parent
118469db3b
commit
7abd45f02d
@@ -25,12 +25,6 @@ Some people don't like colors in their terminals, for some reason. Default is
|
||||
to show colors.
|
||||
"""
|
||||
|
||||
PIPENV_VERBOSITY = int(os.environ.get("PIPENV_VERBOSITY", "0"))
|
||||
"""Verbosity setting for pipenv. Higher values make pipenv less verbose.
|
||||
|
||||
Default is 0, for maximum verbosity.
|
||||
"""
|
||||
|
||||
# Tells Pipenv which Python to default to, when none is provided.
|
||||
PIPENV_DEFAULT_PYTHON_VERSION = os.environ.get("PIPENV_DEFAULT_PYTHON_VERSION")
|
||||
"""Use this Python version when creating new virtual environments by default.
|
||||
@@ -180,6 +174,12 @@ PIPENV_VENV_IN_PROJECT = bool(os.environ.get("PIPENV_VENV_IN_PROJECT"))
|
||||
Default is to create new virtual environments in a global location.
|
||||
"""
|
||||
|
||||
PIPENV_VERBOSITY = int(os.environ.get("PIPENV_VERBOSITY", "0"))
|
||||
"""Verbosity setting for pipenv. Higher values make pipenv less verbose.
|
||||
|
||||
Default is 0, for maximum verbosity.
|
||||
"""
|
||||
|
||||
PIPENV_YES = bool(os.environ.get("PIPENV_YES"))
|
||||
"""If set, Pipenv automatically assumes "yes" at all prompts.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user