diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-08 23:35:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 23:35:01 (GMT) |
commit | 0e2a0f72cc9af0899eacb5604e44a563c0b06110 (patch) | |
tree | 73587df57200aa0b1c7d4c4ce476a07dbea8d6e6 /Doc/extending | |
parent | 68e1f259bee7723d63488854b69a4bef2b7e5db2 (diff) | |
download | cpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.zip cpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.tar.gz cpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.tar.bz2 |
bpo-42802: Remove distutils bdist_wininst command (GH-24043)
The distutils bdist_wininst command deprecated in Python 3.8 has been
removed. The distutils bidst_wheel command is now recommended to
distribute binary packages on Windows.
* Remove Lib/distutils/command/bdist_wininst.py
* Remove PC/bdist_wininst/ project
* Remove Lib/distutils/command/wininst-*.exe programs
* Remove all references to bdist_wininst
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/building.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/extending/building.rst b/Doc/extending/building.rst index 753b551..69dffbd 100644 --- a/Doc/extending/building.rst +++ b/Doc/extending/building.rst @@ -162,6 +162,5 @@ If the source distribution has been built successfully, maintainers can also create binary distributions. Depending on the platform, one of the following commands can be used to do so. :: - python setup.py bdist_wininst python setup.py bdist_rpm python setup.py bdist_dumb |