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.
This commit is contained in:
Hugo van Kemenade 2021-09-07 13:34:27 +03:00 committed by GitHub
parent 533e725821
commit eb254b43d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 18 additions and 822 deletions

View file

@ -250,6 +250,9 @@ Removed
(Contributed by Victor Stinner in :issue:`45085`.)
* The distutils ``bdist_msi`` command, deprecated in Python 3.9, is now removed.
Use ``bdist_wheel`` (wheel packages) instead.
(Contributed by Hugo van Kemenade in :issue:`45124`.)
Optimizations
=============