summaryrefslogtreecommitdiff
path: root/distutils/command/bdist.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-08-13 18:39:11 -0400
committerGitHub <noreply@github.com>2022-08-13 18:39:11 -0400
commitfac564f8ee844569702b6573eecd906c60778043 (patch)
treec99973d59fb0c6a2cfe4fa9100ae7e4ccec00850 /distutils/command/bdist.py
parentda843e7acb39cd5f45167e585945a49e3d13c744 (diff)
parent1c269f59a0bba391d40f18701451dfcff56bb0df (diff)
downloadpython-setuptools-git-fac564f8ee844569702b6573eecd906c60778043.tar.gz
Merge pull request #162 from pypa/debt/remove-bdist_msi
Remove the bdist_msi command
Diffstat (limited to 'distutils/command/bdist.py')
-rw-r--r--distutils/command/bdist.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/distutils/command/bdist.py b/distutils/command/bdist.py
index 4a1669d3..de37dae0 100644
--- a/distutils/command/bdist.py
+++ b/distutils/command/bdist.py
@@ -86,7 +86,6 @@ class bdist(Command):
'ztar': ('bdist_dumb', "compressed tar file"),
'tar': ('bdist_dumb', "tar file"),
'zip': ('bdist_dumb', "ZIP file"),
- 'msi': ('bdist_msi', "Microsoft Installer"),
}
)