summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-09-07 10:34:27 (GMT)
committerGitHub <noreply@github.com>2021-09-07 10:34:27 (GMT)
commiteb254b43d2916ef8c0e9ca815fe047411d848aae (patch)
tree0b6701104ee3a7371daba5081b4d5c282c3bfbd6 /Misc
parent533e725821b15e2df2cd4479a34597c1d8faf616 (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-09-07-09-13-27.bpo-45124.Kw5AUs.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-09-07-09-13-27.bpo-45124.Kw5AUs.rst b/Misc/NEWS.d/next/Library/2021-09-07-09-13-27.bpo-45124.Kw5AUs.rst
new file mode 100644
index 0000000..2f6ab41
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-09-07-09-13-27.bpo-45124.Kw5AUs.rst
@@ -0,0 +1,5 @@
+The ``bdist_msi`` command, deprecated in Python 3.9, is now removed.
+
+Use ``bdist_wheel`` (wheel packages) instead.
+
+Patch by Hugo van Kemenade.