diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2020-02-10 13:26:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 13:26:40 (GMT) |
commit | 29b3fc0a18f105de666fdd586b537f34e349766d (patch) | |
tree | 0492c7ec4d028639fbe6d139c343140597d7409e /Doc/whatsnew | |
parent | 5305cc9dbfe8a5a0ab666511f3ba7f026c8983f8 (diff) | |
download | cpython-29b3fc0a18f105de666fdd586b537f34e349766d.zip cpython-29b3fc0a18f105de666fdd586b537f34e349766d.tar.gz cpython-29b3fc0a18f105de666fdd586b537f34e349766d.tar.bz2 |
bpo-39586: Deprecate distutils bdist_msi command (GH-18415)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 4991e56..4f4c7f2 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -398,6 +398,10 @@ Build and C API Changes Deprecated ========== +* The distutils ``bdist_msi`` command is now deprecated, use + ``bdist_wheel`` (wheel packages) instead. + (Contributed by Hugo van Kemenade in :issue:`39586`.) + * Currently :func:`math.factorial` accepts :class:`float` instances with non-negative integer values (like ``5.0``). It raises a :exc:`ValueError` for non-integral and negative floats. It is now deprecated. In future |