Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify pipenv install documentation #2844

Merged
merged 4 commits into from
Sep 14, 2018
Merged

Clarify pipenv install documentation #2844

merged 4 commits into from
Sep 14, 2018

Commits on Sep 11, 2018

  1. Clarify pipenv install documentation

    `if no packages are given` sounds a bit better than
    `if none is given` when referring to `provided packages`.
    
    Also mention that `pipenv install` with no provided packages
    installs all packages from Pipfile. It is not obvious for
    people new to pipenv whether pipenv is using Pipfile or
    Pipfile.lock by default.
    Gabi Nagy committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    0a44931 View commit details
    Browse the repository at this point in the history
  2. Add fragment to the news directory

    Gabi Nagy committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    0632d83 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2018

  1. Fix pipenv install --dev description

    By default, `pipenv install` will install packages
    based on the list in `Pipfile`, not `Pipfile.lock`.
    `pipenv install --dev` is no exception.
    
    I've tested this using pipenv 2018.7.1
    with different package versions in `Pipfile`
    and `Pipfile.lock`. After `pipenv install`,
    the versions in `Pipfile` were the ones
    actually installed.
    Gabi Nagy committed Sep 13, 2018
    Configuration menu
    Copy the full SHA
    c94202a View commit details
    Browse the repository at this point in the history
  2. Fix pipenv install --dev help text

    The previous help text made it seem that
    `pipenv install --dev` would install ONLY
    dev-packages, which is not the case.
    
    The current description is identical to the
    one used in the documentation, which is
    a lot clearer.
    Gabi Nagy committed Sep 13, 2018
    Configuration menu
    Copy the full SHA
    f78b2d0 View commit details
    Browse the repository at this point in the history