diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2021-09-07 10:34:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 10:34:27 (GMT) |
commit | eb254b43d2916ef8c0e9ca815fe047411d848aae (patch) | |
tree | 0b6701104ee3a7371daba5081b4d5c282c3bfbd6 /Doc/distutils | |
parent | 533e725821b15e2df2cd4479a34597c1d8faf616 (diff) | |
download | cpython-eb254b43d2916ef8c0e9ca815fe047411d848aae.zip cpython-eb254b43d2916ef8c0e9ca815fe047411d848aae.tar.gz cpython-eb254b43d2916ef8c0e9ca815fe047411d848aae.tar.bz2 |
bpo-45124: Remove the bdist_msi command (GH-28195)
The bdist_msi command, deprecated in Python 3.9, is now removed.
Use bdist_wheel (wheel packages) instead.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 16 | ||||
-rw-r--r-- | Doc/distutils/builtdist.rst | 5 |
2 files changed, 0 insertions, 21 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index e4437f4..b65492f 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1852,22 +1852,6 @@ Subclasses of :class:`Command` must define the following methods. .. % todo -:mod:`distutils.command.bdist_msi` --- Build a Microsoft Installer binary package -================================================================================= - -.. module:: distutils.command.bdist_msi - :synopsis: Build a binary distribution as a Windows MSI file - -.. class:: bdist_msi - -.. deprecated:: 3.9 - Use bdist_wheel (wheel packages) instead. - - Builds a `Windows Installer`_ (.msi) binary package. - - .. _Windows Installer: https://msdn.microsoft.com/en-us/library/cc185688(VS.85).aspx - - :mod:`distutils.command.bdist_rpm` --- Build a binary distribution as a Redhat RPM and SRPM =========================================================================================== diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index c4409ac..c1d9ea5 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -138,11 +138,6 @@ generated by each, are: +--------------------------+-------------------------------------+ | :command:`bdist_rpm` | rpm, srpm | +--------------------------+-------------------------------------+ -| :command:`bdist_msi` | msi | -+--------------------------+-------------------------------------+ - -.. note:: - bdist_msi is deprecated since Python 3.9. The following sections give details on the individual :command:`bdist_\*` commands. |