diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2020-02-10 13:26:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 13:26:40 (GMT) |
commit | 29b3fc0a18f105de666fdd586b537f34e349766d (patch) | |
tree | 0492c7ec4d028639fbe6d139c343140597d7409e /Doc/distutils | |
parent | 5305cc9dbfe8a5a0ab666511f3ba7f026c8983f8 (diff) | |
download | cpython-29b3fc0a18f105de666fdd586b537f34e349766d.zip cpython-29b3fc0a18f105de666fdd586b537f34e349766d.tar.gz cpython-29b3fc0a18f105de666fdd586b537f34e349766d.tar.bz2 |
bpo-39586: Deprecate distutils bdist_msi command (GH-18415)
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 3 | ||||
-rw-r--r-- | Doc/distutils/builtdist.rst | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 12e0c0b..b14197c 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -1855,6 +1855,9 @@ Subclasses of :class:`Command` must define the following methods. .. 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 diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index b814f2e..e032c03 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -149,6 +149,9 @@ generated by each, are: .. note:: bdist_wininst is deprecated since Python 3.8. +.. note:: + bdist_msi is deprecated since Python 3.9. + The following sections give details on the individual :command:`bdist_\*` commands. @@ -304,6 +307,9 @@ Creating Windows Installers .. warning:: bdist_wininst is deprecated since Python 3.8. +.. warning:: + bdist_msi is deprecated since Python 3.9. + Executable installers are the natural format for binary distributions on Windows. They display a nice graphical user interface, display some information about the module distribution to be installed taken from the metadata in the @@ -468,3 +474,6 @@ installed for all users) and 'force' (meaning always prompt for elevation). .. note:: bdist_wininst is deprecated since Python 3.8. + +.. note:: + bdist_msi is deprecated since Python 3.9. |