class Dependabot::Uv::PipenvRunner

def pipenv_env_variables

def pipenv_env_variables
  {
    "PIPENV_YES" => "true",        # Install new Python ver if needed
    "PIPENV_MAX_RETRIES" => "3",   # Retry timeouts
    "PIPENV_NOSPIN" => "1",        # Don't pollute logs with spinner
    "PIPENV_TIMEOUT" => "600",     # Set install timeout to 10 minutes
    "PIP_DEFAULT_TIMEOUT" => "60", # Set pip timeout to 1 minute
    "COLUMNS" => "250"             # Avoid line wrapping
  }
end