diff --git a/docs/basics.rst b/docs/basics.rst index 574bc0bc..d0c5d0ca 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -131,7 +131,7 @@ Example Pipfile.lock - Generally, keep both ``Pipfile`` and ``Pipfile.lock`` in version control. - Do not keep ``Pipfile.lock`` in version control if multiple versions of Python are being targeted. -- Specify your target Python version in your `Pipfile`'s ``[requires]`` section. Ideally, you should only have one target Python version, as this is a deployment tool. +- Specify your target Python version in your `Pipfile`'s ``[requires]`` section. Ideally, you should only have one target Python version, as this is a deployment tool. ``python_version`` should be in the format ``X.Y`` and ``python_full_version`` should be in ``X.Y.Z`` format. - ``pipenv install`` is fully compatible with ``pip install`` syntax, for which the full documentation can be found `here `_. - Note that the ``Pipfile`` uses the `TOML Spec `_. diff --git a/news/3914.doc.rst b/news/3914.doc.rst new file mode 100644 index 00000000..ae37d61d --- /dev/null +++ b/news/3914.doc.rst @@ -0,0 +1 @@ +Clarify the proper value of `python_version` and `python_full_version`.