diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-07-05 08:44:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-05 08:44:12 (GMT) |
commit | 1da4462765b084dfa8d869b6cb5855e8f6014a11 (patch) | |
tree | 42e1203ee43a5d5da5da56ba489e76b3dddecb47 /Doc/whatsnew/3.8.rst | |
parent | a55f75a6e3e9cda5c7c30bd961386b1a8a2e9892 (diff) | |
download | cpython-1da4462765b084dfa8d869b6cb5855e8f6014a11.zip cpython-1da4462765b084dfa8d869b6cb5855e8f6014a11.tar.gz cpython-1da4462765b084dfa8d869b6cb5855e8f6014a11.tar.bz2 |
bpo-37481: Deprecate distutils bdist_wininst command (GH-14553)
The distutils bdist_wininst command is now deprecated, use
bdist_wheel (wheel packages) instead.
Diffstat (limited to 'Doc/whatsnew/3.8.rst')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 61e1d3d..95f25cd 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -1068,6 +1068,10 @@ Build and C API Changes Deprecated ========== +* The distutils ``bdist_wininst`` command is now deprecated, use + ``bdist_wheel`` (wheel packages) instead. + (Contributed by Victor Stinner in :issue:`37481`.) + * Deprecated methods ``getchildren()`` and ``getiterator()`` in the :mod:`~xml.etree.ElementTree` module emit now a :exc:`DeprecationWarning` instead of :exc:`PendingDeprecationWarning`. |