Skip to content

Commit 56706ad

Browse files
hugovkJon Wayne Parrott
authored andcommitted
Title in sentence case for consistency (pypa#467)
1 parent ae46f38 commit 56706ad

18 files changed

+35
-35
lines changed

source/discussions/deploying-python-applications.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Supporting multiple hardware platforms
3636

3737

3838

39-
OS Packaging & Installers
39+
OS packaging & installers
4040
=========================
4141

4242
::
@@ -77,7 +77,7 @@ There are several examples for different kinds of programs (console, GUI) in
7777
the `documentation <https://pynsist.readthedocs.io>`__. The tool is released
7878
under the MIT-licence.
7979

80-
Application Bundles
80+
Application bundles
8181
===================
8282

8383
::
@@ -88,7 +88,7 @@ Application Bundles
8888
- wheels kinda/sorta
8989

9090

91-
Configuration Management
91+
Configuration management
9292
========================
9393

9494
::

source/discussions/install-requires-vs-requirements.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
.. _`install_requires vs Requirements files`:
1+
.. _`install_requires vs requirements files`:
22

33
======================================
4-
install_requires vs Requirements files
4+
install_requires vs requirements files
55
======================================
66

77
.. contents:: Contents

source/guides/dropping-older-python-versions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _`Dropping support for older Python versions`:
22

33
==========================================
4-
Dropping Support for Older Python Versions
4+
Dropping support for older Python versions
55
==========================================
66

77
Dropping support for older Python versions is supported by the standard :ref:`core-metadata` 1.2 specification via a "Requires-Python" attribute.

source/guides/hosting-your-own-index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ valid HTTPS. At this time, the security of your user's installations depends on
2121
all repositories using a valid HTTPS setup.
2222

2323

24-
"Manual" Repository
24+
"Manual" repository
2525
===================
2626

2727
The directory layout is fairly simple, within a root directory you need to

source/guides/packaging-binary-extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ For interim guidance on this topic, see the discussion in
297297
discouraged
298298

299299

300-
Additional Resources
300+
Additional resources
301301
====================
302302

303303
Cross-platform development and distribution of extension modules is a complex topic,

source/guides/packaging-namespace-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ There are currently three different approaches to creating namespace packages:
7777
same namespace.
7878

7979
Native namespace packages
80-
--------------------------------
80+
-------------------------
8181

8282
Python 3.3 added **implicit** namespace packages from :pep:`420`. All that is
8383
required to create a native namespace package is that you just omit

source/guides/supporting-multiple-python-versions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ correctly on all the target Python versions (and OSs!) could be very
4545
time-consuming. Fortunately, several tools are available for dealing with
4646
this, and these will briefly be discussed here.
4747

48-
Automated Testing and Continuous Integration
48+
Automated testing and continuous integration
4949
--------------------------------------------
5050

5151
Several hosted services for automated testing are available. These services
@@ -120,7 +120,7 @@ package: with python-future_, the ``futurize`` script can be called with the
120120
provides for forward-compatibility to Python 3. Any remaining compatibility
121121
problems would require manual changes.
122122

123-
What's in Which Python?
123+
What's in which Python?
124124
-----------------------
125125

126126
Ned Batchelder provides a list of changes in each Python release for

source/guides/supporting-windows-using-appveyor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ using Appveyor as a build service (even if not using it for testing) it is
3434
possible for projects without a dedicated Windows environment to provide
3535
Windows-targeted binaries.
3636

37-
Setting Up
37+
Setting up
3838
==========
3939

4040
In order to use Appveyor to build Windows wheels for your project, you must
@@ -143,7 +143,7 @@ of links, one of which is "Artifacts". That page will include a list of links
143143
to the wheels for that Python version / architecture. You can download those
144144
wheels and upload them to PyPI as part of your release process.
145145

146-
Additional Notes
146+
Additional notes
147147
================
148148

149149
Testing with tox

source/guides/tool-recommendations.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you're familiar with Python packaging and installation, and just want to know
88
what tools are currently recommended, then here it is.
99

1010

11-
Application Dependency Management
11+
Application dependency management
1212
=================================
1313

1414
Use :ref:`pipenv` to manage library dependencies when developing Python
@@ -18,7 +18,7 @@ on using ``pipenv``.
1818
Consider other tools such as :ref:`pip` when ``pipenv`` does not meet your use
1919
case.
2020

21-
Installation Tool Recommendations
21+
Installation tool recommendations
2222
=================================
2323

2424
* Use :ref:`pip` to install Python :term:`packages <Distribution Package>` from
@@ -38,7 +38,7 @@ Installation Tool Recommendations
3838
on the scientific community.
3939

4040

41-
Packaging Tool Recommendations
41+
Packaging tool recommendations
4242
==============================
4343

4444
* Use :ref:`setuptools` to define projects and create :term:`Source Distributions
@@ -52,7 +52,7 @@ Packaging Tool Recommendations
5252
to :term:`PyPI <Python Package Index (PyPI)>`.
5353

5454

55-
Publishing Platform Migration
55+
Publishing platform migration
5656
=============================
5757

5858
The original Python Package Index implementation (hosted at

source/specifications/core-metadata.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _`core-metadata`:
22

33
============================
4-
Core Metadata Specifications
4+
Core metadata specifications
55
============================
66

77
The current core metadata file format, version 2.1, is specified in :pep:`566`.

0 commit comments

Comments
 (0)