@@ -5,7 +5,7 @@ This tutorial walks you through how to package a simple Python project. It will
55show you how to add the necessary files and structure to create the package, how
66to 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
99sure 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
122122Static metadata (:file: `setup.cfg `) should be preferred. Dynamic metadata (:file: `setup.py `)
123123should 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
329329code 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
333333Creating a LICENSE
@@ -385,7 +385,7 @@ The next step is to generate :term:`distribution packages <Distribution
385385Package> ` for the package. These are archives that are uploaded to the Python
386386Package 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