From 1a7d72fe6ebee100fda2a3d40dda1bcf14b29971 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 30 Jul 2018 14:35:28 +1000 Subject: [PATCH 1/4] Add link to PEP-440 for version specifiers --- docs/basics.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/basics.rst b/docs/basics.rst index 9c222eb4..8a9460e7 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -188,6 +188,7 @@ 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 `PEP-440 <(https://www.python.org/dev/peps/pep-0440/#version-specifiers>`. ☤ Specifying Versions of Python ------------------------------- From 587125c279a0e0abee3059083ea39d64c3e222e5 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 30 Jul 2018 14:38:53 +1000 Subject: [PATCH 2/4] Fix syntax of link --- docs/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index 8a9460e7..3db70519 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -188,7 +188,7 @@ 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 `PEP-440 <(https://www.python.org/dev/peps/pep-0440/#version-specifiers>`. +For other version specifiers, see `PEP-440 `. ☤ Specifying Versions of Python ------------------------------- From 4bfa219985d2338854e3cea31ddd2072c5d47fad Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 4 Aug 2018 18:16:35 -0400 Subject: [PATCH 3/4] Use proper syntax for rst links Fix link syntax for pep440 links in documentation --- docs/basics.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index 3db70519..bcd1f89f 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -188,7 +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 `PEP-440 `. +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 ------------------------------- From 797ce40bb29fa50cec307240fc4ac2965fa7a047 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 5 Aug 2018 02:39:00 -0400 Subject: [PATCH 4/4] Add news entry for pr #2674 Signed-off-by: Dan Ryan --- news/2674.doc | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/2674.doc 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.