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 /Lib/distutils/command/bdist.py | |
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 'Lib/distutils/command/bdist.py')
-rw-r--r-- | Lib/distutils/command/bdist.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index d580a80..60309e1 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -61,8 +61,7 @@ class bdist(Command): 'nt': 'zip'} # Establish the preferred order (for the --help-formats option). - format_commands = ['rpm', 'gztar', 'bztar', 'xztar', 'ztar', 'tar', - 'zip', 'msi'] + format_commands = ['rpm', 'gztar', 'bztar', 'xztar', 'ztar', 'tar', 'zip'] # And the real information. format_command = {'rpm': ('bdist_rpm', "RPM distribution"), @@ -72,10 +71,8 @@ class bdist(Command): 'ztar': ('bdist_dumb', "compressed tar file"), 'tar': ('bdist_dumb', "tar file"), 'zip': ('bdist_dumb', "ZIP file"), - 'msi': ('bdist_msi', "Microsoft Installer") } - def initialize_options(self): self.bdist_base = None self.plat_name = None |