Merge pull request #2539 from gkdoc/master

Revise note format for consistency in basics.rst
This commit is contained in:
Erin O'Connell
2018-07-07 21:01:16 -06:00
committed by GitHub
+5 -7
View File
@@ -222,9 +222,9 @@ If a ``Pipfile`` hasn't been created yet, one will be created for you, that look
[requires]
python_version = "3.6"
Note the inclusion of ``[requires] python_version = "3.6"``. This specifies that your application requires this version
of Python, and will be used automatically when running ``pipenv install`` against this ``Pipfile`` in the future
(e.g. on other machines). If this is not true, feel free to simply remove this section.
.. note:: The inclusion of ``[requires] python_version = "3.6"`` specifies that your application requires this version
of Python, and will be used automatically when running ``pipenv install`` against this ``Pipfile`` in the future
(e.g. on other machines). If this is not true, feel free to simply remove this section.
If you don't specify a Python version on the commandline, either the ``[requires]`` ``python_full_version`` or ``python_version`` will be selected
automatically, falling back to whatever your system's default ``python`` installation is, at time of execution.
@@ -244,10 +244,8 @@ the current working directory when working on packages::
"e1839a8" = {path = ".", editable = true}
...
Note that all sub-dependencies will get added to the ``Pipfile.lock`` as well.
.. note:: Sub-dependencies are **not** added to the ``Pipfile.lock`` if you
leave the ``-e`` option out.
.. note:: All sub-dependencies will get added to the ``Pipfile.lock`` as well. Sub-dependencies are **not** added to the
``Pipfile.lock`` if you leave the ``-e`` option out.
.. _environment_management: