This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [Windows] test_distutils logs: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
Type: Stage: resolved
Components: Tests Versions: Python 3.10
process
Status: closed Resolution: duplicate
Dependencies: Superseder: test_distutils emits deprecation warning about distutils
View: 44781
Assigned To: Nosy List: vstinner, xtreak
Priority: normal Keywords:

Created on 2021-04-16 13:10 by vstinner, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (1)
msg391191 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-04-16 13:10
On Windows, test_distutils logs the warning: DeprecationWarning: "bdist_msi command is deprecated (...)". Example:

vstinner@DESKTOP-DK7VBIL C:\vstinner\python\master>python -m test -v test_distutils
(...)
test_skip_build (distutils.tests.test_bdist.BuildTestCase) ... C:\vstinner\python\master\lib\distutils\dist.py:858: DeprecationWarning: bdist_msi command is deprecated since Python 3.9, use bdist_wheel (wheel packages) instead
  cmd_obj = self.command_obj[command] = klass(self)
ok
(...)
History
Date User Action Args
2022-04-11 14:59:44adminsetgithub: 88029
2022-03-15 10:12:54iritkatrielsetstatus: open -> closed
superseder: test_distutils emits deprecation warning about distutils
resolution: duplicate
stage: resolved
2021-04-16 13:10:51vstinnersetnosy: + xtreak
2021-04-16 13:10:40vstinnercreate