Skip to content

Commit 321163f

Browse files
committed
Fix misplaced blockquotes
Signed-off-by: Pradyun Gedam <[email protected]>
1 parent 6962284 commit 321163f

File tree

5 files changed

+44
-44
lines changed

5 files changed

+44
-44
lines changed

docs/html/development/architecture/upgrade-options.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ relevant if ``--upgrade`` is specified. The base behaviour is to allow
3434
packages specified on pip's command line to be upgraded. This option controls
3535
what *other* packages can be upgraded:
3636

37-
* ``eager`` - all packages will be upgraded to the latest possible version.
38-
It should be noted here that pip's current resolution algorithm isn't even
39-
aware of packages other than those specified on the command line, and
40-
those identified as dependencies. This may or may not be true of the new
41-
resolver.
42-
* ``only-if-needed`` - packages are only upgraded if they are named in the
43-
pip command or a requirement file (i.e, they are direct requirements), or
44-
an upgraded parent needs a later version of the dependency than is
45-
currently installed.
46-
* ``to-satisfy-only`` (**undocumented**) - packages are not upgraded (not
47-
even direct requirements) unless the currently installed version fails to
48-
satisfy a requirement (either explicitly specified or a dependency).
37+
* ``eager`` - all packages will be upgraded to the latest possible version.
38+
It should be noted here that pip's current resolution algorithm isn't even
39+
aware of packages other than those specified on the command line, and
40+
those identified as dependencies. This may or may not be true of the new
41+
resolver.
42+
* ``only-if-needed`` - packages are only upgraded if they are named in the
43+
pip command or a requirement file (i.e, they are direct requirements), or
44+
an upgraded parent needs a later version of the dependency than is
45+
currently installed.
46+
* ``to-satisfy-only`` (**undocumented**) - packages are not upgraded (not
47+
even direct requirements) unless the currently installed version fails to
48+
satisfy a requirement (either explicitly specified or a dependency).
4949

5050
``--force-reinstall``
5151

docs/html/development/ci.rst

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@ Supported interpreters
1717

1818
pip support a variety of Python interpreters:
1919

20-
- CPython 2.7
21-
- CPython 3.5
22-
- CPython 3.6
23-
- CPython 3.7
24-
- CPython 3.8
25-
- Latest PyPy
26-
- Latest PyPy3
20+
- CPython 2.7
21+
- CPython 3.5
22+
- CPython 3.6
23+
- CPython 3.7
24+
- CPython 3.8
25+
- Latest PyPy
26+
- Latest PyPy3
2727

2828
on different operating systems:
2929

30-
- Linux
31-
- Windows
32-
- MacOS
30+
- Linux
31+
- Windows
32+
- MacOS
3333

3434
and on different architectures:
3535

36-
- x64
37-
- x86
36+
- x64
37+
- x86
3838

3939
so 42 hypothetical interpreters.
4040

@@ -66,9 +66,9 @@ Services
6666
pip test suite and checks are distributed on three different platforms that
6767
provides free executors for open source packages:
6868

69-
- `GitHub Actions`_ (Used for code quality and development tasks)
70-
- `Azure DevOps CI`_ (Used for tests)
71-
- `Travis CI`_ (Used for PyPy tests)
69+
- `GitHub Actions`_ (Used for code quality and development tasks)
70+
- `Azure DevOps CI`_ (Used for tests)
71+
- `Travis CI`_ (Used for PyPy tests)
7272

7373
.. _`Travis CI`: https://travis-ci.org/
7474
.. _`Azure DevOps CI`: https://azure.microsoft.com/en-us/services/devops/

docs/html/development/getting-started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,9 @@ in order to start contributing.
157157
* A guide on `triaging issues`_ for issue tracker
158158
* Getting started with Git
159159

160-
- `Hello World for Git`_
161-
- `Understanding the GitHub flow`_
162-
- `Start using Git on the command line`_
160+
- `Hello World for Git`_
161+
- `Understanding the GitHub flow`_
162+
- `Start using Git on the command line`_
163163

164164

165165
.. _`open an issue`: https://github.com/pypa/pip/issues/new?title=Trouble+with+pip+development+environment

docs/html/development/issue-triage.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -276,16 +276,16 @@ An issue may be considered resolved and closed when:
276276
- for each possible improvement or problem represented in the issue
277277
discussion:
278278

279-
- Consensus has been reached on a specific action and the actions
280-
appear to be external to the project, with no follow up needed
281-
in the project afterwards.
279+
- Consensus has been reached on a specific action and the actions
280+
appear to be external to the project, with no follow up needed
281+
in the project afterwards.
282282

283-
- PEP updates (with a corresponding issue in
284-
`python/peps <https://github.com/python/peps>`__)
285-
- already tracked by another issue
283+
- PEP updates (with a corresponding issue in
284+
`python/peps <https://github.com/python/peps>`__)
285+
- already tracked by another issue
286286

287-
- A project-specific issue has been identified and the issue no
288-
longer occurs as of the latest commit on the master branch.
287+
- A project-specific issue has been identified and the issue no
288+
longer occurs as of the latest commit on the master branch.
289289

290290
- An enhancement or feature request no longer has a proponent and the maintainers
291291
don't think it's worth keeping open.
@@ -305,8 +305,8 @@ Common issues
305305
manager-managed pip/python installation (specifically with Debian/Ubuntu).
306306
These typically present themselves as:
307307

308-
#. Not being able to find installed packages
309-
#. basic libraries not able to be found, fundamental OS components missing
310-
#. In these situations you will want to make sure that we know how they got
311-
their Python and pip. Knowing the relevant package manager commands can
312-
help, e.g. ``dpkg -S``.
308+
#. Not being able to find installed packages
309+
#. basic libraries not able to be found, fundamental OS components missing
310+
#. In these situations you will want to make sure that we know how they got
311+
their Python and pip. Knowing the relevant package manager commands can
312+
help, e.g. ``dpkg -S``.

docs/pip_sphinxext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def process_options(self):
143143
prefix = '{}_'.format(self.determine_opt_prefix(opt_name))
144144

145145
self.view_list.append(
146-
' * :ref:`{short}{long}<{prefix}{opt_name}>`'.format(
146+
'* :ref:`{short}{long}<{prefix}{opt_name}>`'.format(
147147
short=short_opt_name,
148148
long=opt_name,
149149
prefix=prefix,

0 commit comments

Comments
 (0)