diff --git a/docs/basics.rst b/docs/basics.rst index 9c222eb4..bcd1f89f 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -188,6 +188,9 @@ To tell pipenv to install a specific version of a library, the usage is simple:: This will update your ``Pipfile`` to reflect this requirement, automatically. +For other version specifiers, see `the relevant section of PEP-440`_. + +.. _`the relevant section of PEP-440`: https://www.python.org/dev/peps/pep-0440/#version-specifiers> ☤ Specifying Versions of Python ------------------------------- diff --git a/news/2674.doc b/news/2674.doc new file mode 100644 index 00000000..33fbd49e --- /dev/null +++ b/news/2674.doc @@ -0,0 +1 @@ +Added a link to ``PEP-440`` version specifiers in the documentation for additional detail.