Skip to content

Commit 664b540

Browse files
committed
Normalize versions language
1 parent c46f8f6 commit 664b540

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

source/tutorials/packaging-projects.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This tutorial walks you through how to package a simple Python project. It will
55
show you how to add the necessary files and structure to create the package, how
66
to build the package, and how to upload it to the Python Package Index.
77

8-
Some of the commands require a recent version of :ref:`pip`, so start by making
8+
Some of the commands require a newer version of :ref:`pip`, so start by making
99
sure you have the latest version installed:
1010

1111
.. tab:: Unix/macOS
@@ -121,7 +121,7 @@ There are two types of metadata: static and dynamic.
121121

122122
Static metadata (:file:`setup.cfg`) should be preferred. Dynamic metadata (:file:`setup.py`)
123123
should be used only as an escape hatch when absolutely necessary. :file:`setup.py` used to
124-
be required, but can be omitted in modern setuptools.
124+
be required, but can be omitted with newer versions of setuptools and pip.
125125

126126

127127
.. tab:: :file:`setup.cfg` (static)
@@ -327,7 +327,7 @@ if you'd like.
327327
Because our configuration loads :file:`README.md` to provide a
328328
``long_description``, :file:`README.md` must be included along with your
329329
code when you :ref:`generate a source distribution <generating archives>`.
330-
Recent versions of :ref:`setuptools` will do this automatically.
330+
Newer versions of :ref:`setuptools` will do this automatically.
331331

332332

333333
Creating a LICENSE
@@ -385,7 +385,7 @@ The next step is to generate :term:`distribution packages <Distribution
385385
Package>` for the package. These are archives that are uploaded to the Python
386386
Package Index and can be installed by :ref:`pip`.
387387

388-
Make sure you have the latest versions of PyPA's ``build`` installed:
388+
Make sure you have the latest version of PyPA's ``build`` installed:
389389

390390
.. tab:: Unix/macOS
391391

0 commit comments

Comments
 (0)