From 87a0d79cf215b40cca34ce079029b26b5a42cf71 Mon Sep 17 00:00:00 2001 From: Ashley Stallings Date: Tue, 1 Oct 2019 07:55:21 -0500 Subject: [PATCH 1/2] Update documentation links to take you to the correct website --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8be2052e..498625e9 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Or, if you\'re using FreeBSD: # pkg install py36-pipenv -Otherwise, refer to the [documentation](https://docs.pipenv.org/en/latest/install/#installing-pipenv) for instructions. +Otherwise, refer to the [documentation](https://pipenv.kennethreitz.org/en/latest/#install-pipenv-today) for instructions. ✨🍰✨ @@ -303,4 +303,4 @@ Use the shell: ☤ Documentation --------------- -Documentation resides over at [pipenv.org](http://pipenv.org/). +Documentation resides over at [pipenv.org](https://pipenv.kennethreitz.org/en/latest/). From 9b6a745758427f5842611c714ffe346be8bfa0ef Mon Sep 17 00:00:00 2001 From: Jon Erling Hustadnes Date: Sat, 5 Oct 2019 15:37:41 +0200 Subject: [PATCH 2/2] Fixed link references for PEP 440 --- docs/basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/basics.rst b/docs/basics.rst index 9593d0c0..574bc0bc 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -202,7 +202,7 @@ This will update your ``Pipfile`` to reflect this requirement, automatically. In general, Pipenv uses the same specifier format as pip. However, note that according to `PEP 440`_ , you can't use versions containing a hyphen or a plus sign. -.. _`PEP 440`: +.. _`PEP 440`: https://www.python.org/dev/peps/pep-0440/ To make inclusive or exclusive version comparisons you can use: :: @@ -222,7 +222,7 @@ To avoid installing a specific version you can use the ``!=`` identifier. For an in depth explanation of the valid identifiers and more complex use cases check `the relevant section of PEP-440`_. -.. _`the relevant section of PEP-440`: https://www.python.org/dev/peps/pep-0440/#version-specifiers> +.. _`the relevant section of PEP-440`: https://www.python.org/dev/peps/pep-0440/#version-specifiers ☤ Specifying Versions of Python -------------------------------