diff --git a/docs/basics.rst b/docs/basics.rst index 4779f04bb1..2a37d7f981 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -127,6 +127,7 @@ Example Pipfile.lock - 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. - ``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/3629.doc.rst b/news/3629.doc.rst new file mode 100644 index 0000000000..4d878c4023 --- /dev/null +++ b/news/3629.doc.rst @@ -0,0 +1 @@ +Added a link to the TOML Spec under General Recommendations & Version Control to clarify how Pipfiles should be written.