summaryrefslogtreecommitdiffstats
path: root/Doc/distributing
diff options
context:
space:
mode:
authorOleg Iarygin <oleg@arhadthedev.net>2022-07-25 10:20:09 (GMT)
committerGitHub <noreply@github.com>2022-07-25 10:20:09 (GMT)
commitd58be48369186590d4dfa204bf6b4c432b665281 (patch)
treeea3678de95f324df8534621bac3b822876900342 /Doc/distributing
parentdf7c8b95372169fb9d23140d35f91970ba32189d (diff)
downloadcpython-d58be48369186590d4dfa204bf6b4c432b665281.zip
cpython-d58be48369186590d4dfa204bf6b4c432b665281.tar.gz
cpython-d58be48369186590d4dfa204bf6b4c432b665281.tar.bz2
gh-85454: Remove links from historical mentions of distutils (GH-95192)
Diffstat (limited to 'Doc/distributing')
-rw-r--r--Doc/distributing/index.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/distributing/index.rst b/Doc/distributing/index.rst
index 136cf4e..2ae2726 100644
--- a/Doc/distributing/index.rst
+++ b/Doc/distributing/index.rst
@@ -41,21 +41,21 @@ Key terms
file format standards. They maintain a variety of tools, documentation
and issue trackers on both `GitHub <https://github.com/pypa>`__ and
`Bitbucket <https://bitbucket.org/pypa/>`__.
-* :mod:`distutils` is the original build and distribution system first added
- to the Python standard library in 1998. While direct use of :mod:`distutils`
+* ``distutils`` is the original build and distribution system first added
+ to the Python standard library in 1998. While direct use of ``distutils``
is being phased out, it still laid the foundation for the current packaging
and distribution infrastructure, and it not only remains part of the
standard library, but its name lives on in other ways (such as the name
of the mailing list used to coordinate Python packaging standards
development).
-* `setuptools`_ is a (largely) drop-in replacement for :mod:`distutils` first
+* `setuptools`_ is a (largely) drop-in replacement for ``distutils`` first
published in 2004. Its most notable addition over the unmodified
- :mod:`distutils` tools was the ability to declare dependencies on other
+ ``distutils`` tools was the ability to declare dependencies on other
packages. It is currently recommended as a more regularly updated
- alternative to :mod:`distutils` that offers consistent support for more
+ alternative to ``distutils`` that offers consistent support for more
recent packaging standards across a wide range of Python versions.
* `wheel`_ (in this context) is a project that adds the ``bdist_wheel``
- command to :mod:`distutils`/`setuptools`_. This produces a cross platform
+ command to ``distutils``/`setuptools`_. This produces a cross platform
binary packaging format (called "wheels" or "wheel files" and defined in
:pep:`427`) that allows Python libraries, even those including binary
extensions, to be installed on a system without needing to be built