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: bdist_wininst doesn't execute postinstall script
Type: behavior Stage: resolved
Components: Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: mhammond Nosy List: mhammond, vstinner
Priority: normal Keywords: patch

Created on 2020-09-12 04:16 by mhammond, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22210 closed mhammond, 2020-09-12 04:26
Messages (2)
msg376771 - (view) Author: Mark Hammond (mhammond) * (Python committer) Date: 2020-09-12 04:16
install.c tries to dynamically load PyCFunction_New at https://github.com/python/cpython/blob/fb2718720346c8c7a0ad2d7477f20e9a5524ea0c/PC/bdist_wininst/install.c#L686 - however, since 3.8 this no longer exists - PyCFunction_New is a #define which calls PyCFunction_NewEx
msg384813 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-01-11 12:50
The distutils bdist_wininst command has been removed in Python 3.10: see bpo-42802.
History
Date User Action Args
2022-04-11 14:59:35adminsetgithub: 85937
2021-01-11 12:50:19vstinnersetstatus: open -> closed

nosy: + vstinner
messages: + msg384813

resolution: wont fix
stage: patch review -> resolved
2020-09-12 04:26:53mhammondsetkeywords: + patch
stage: patch review
pull_requests: + pull_request21265
2020-09-12 04:16:45mhammondcreate