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 /Lib/distutils/command/bdist_msi.py | |
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 'Lib/distutils/command/bdist_msi.py')
-rw-r--r-- | Lib/distutils/command/bdist_msi.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_msi.py b/Lib/distutils/command/bdist_msi.py index f335a34..0863a18 100644 --- a/Lib/distutils/command/bdist_msi.py +++ b/Lib/distutils/command/bdist_msi.py @@ -6,7 +6,9 @@ Implements the bdist_msi command. """ -import sys, os +import os +import sys +import warnings from distutils.core import Command from distutils.dir_util import remove_tree from distutils.sysconfig import get_python_version @@ -122,6 +124,12 @@ class bdist_msi(Command): '3.5', '3.6', '3.7', '3.8', '3.9'] other_version = 'X' + def __init__(self, *args, **kw): + super().__init__(*args, **kw) + warnings.warn("bdist_msi command is deprecated since Python 3.9, " + "use bdist_wheel (wheel packages) instead", + DeprecationWarning, 2) + def initialize_options(self): self.bdist_dir = None self.plat_name = None |