Don't double up on the PEP 440 label

This commit is contained in:
Nick Coghlan 2018-06-06 00:10:25 +10:00 committed by GitHub
parent 2d9356141f
commit f9e9bc155b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,7 @@ Some examples:
SomeProject~=1.4.2 SomeProject~=1.4.2
Since version 6.0, pip also supports specifiers containing `environment markers Since version 6.0, pip also supports specifiers containing `environment markers
<https://www.python.org/dev/peps/pep-0508/#environment-markers>`_ like so: <https://www.python.org/dev/peps/pep-0508/#environment-markers>`__ like so:
:: ::
@ -311,7 +311,7 @@ Pre-release Versions
++++++++++++++++++++ ++++++++++++++++++++
Starting with v1.4, pip will only install stable versions as specified by Starting with v1.4, pip will only install stable versions as specified by
`PEP440`_ by default. If a version cannot be parsed as a compliant `PEP440`_ `pre-releases`_ by default. If a version cannot be parsed as a compliant `PEP440`_
version then it is assumed to be a pre-release. version then it is assumed to be a pre-release.
If a Requirement specifier includes a pre-release or development version If a Requirement specifier includes a pre-release or development version
@ -322,7 +322,7 @@ The ``pip install`` command also supports a :ref:`--pre <install_--pre>` flag
that will enable installing pre-releases and development releases. that will enable installing pre-releases and development releases.
.. _PEP440: https://www.python.org/dev/peps/pep-0440/#handling-of-pre-releases .. _pre-releases: https://www.python.org/dev/peps/pep-0440/#handling-of-pre-releases
.. _`VCS Support`: .. _`VCS Support`: