note on hashes

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-07 12:14:50 -04:00
parent 70d2504ef9
commit 52876e1f4a
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -32,8 +32,8 @@ Pipenv automatically creates and manages the virtualenvs of your projects, as we
The problems that Pipenv seeks to solve are multi-faceted:
- When using Pipenv, you no longer need to use ``pip`` and ``virtualenv`` separately. They work together.
- Managing a ``requirements.txt`` file `can be problematic <https://www.kennethreitz.org/essays/a-better-pip-workflow>`_, so Pipenv uses the upcoming ``Pipfile`` and ``Pipfile.lock`` instead, which is superior for basic use cases.
- Managing a ``requirements.txt`` file `can be problematic <https://www.kennethreitz.org/essays/a-better-pip-workflow>`_, so Pipenv uses the upcoming ``Pipfile`` and ``Pipfile.lock`` instead, which is superior for basic use cases.
- Hashes are used everywhere, always. Security.
Installation
------------
@@ -62,7 +62,7 @@ Installation
----------
- Enables truly *deterministic builds*, while easily specifying *what you want*.
- Generates and checks file hashes for locked dependencies (via ``--hashes``).
- Generates and checks file hashes for locked dependencies (via ``--hashes``).
- Automatically finds your project home, recursively, by looking for a ``Pipfile``.
- Automatically generates a ``Pipfile``, if one doesn't exist.
- Automatically generates a ``Pipfile.lock``, if one doesn't exist.
+3 -3
View File
@@ -37,8 +37,8 @@ It automatically creates and manages a virtualenv for your projects, as well as
The problems that Pipenv seeks to solve are multi-faceted:
- When using Pipenv, you no longer need to use ``pip`` and ``virtualenv`` separately. They work together.
- Managing a ``requirements.txt`` file `can be problematic <https://www.kennethreitz.org/essays/a-better-pip-workflow>`_, so Pipenv uses the upcoming ``Pipfile`` and ``Pipfile.lock`` instead, which is superior for basic use cases.
- Managing a ``requirements.txt`` file `can be problematic <https://www.kennethreitz.org/essays/a-better-pip-workflow>`_, so Pipenv uses the upcoming ``Pipfile`` and ``Pipfile.lock`` instead, which is superior for basic use cases.
- Hashes are used everywhere, always. Security.
Install Pipenv Today!
---------------------
@@ -47,7 +47,7 @@ Install Pipenv Today!
$ pip install pipenv
✨🍰✨
If you have excellent taste, there's also a `fancy installation method <http://docs.pipenv.org/en/latest/advanced.html#fancy-installation-of-pipenv>`_.
.. toctree::