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_msi.py failed assert when including extension modules
Type: behavior Stage:
Components: Distutils Versions: Python 2.7
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: loewis Nosy List: benjamin.peterson, loewis, tarek, tim.golden
Priority: release blocker Keywords: patch

Created on 2009-05-19 21:51 by tim.golden, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bdist_msi.patch tim.golden, 2009-05-19 21:51
Messages (2)
msg88098 - (view) Author: Tim Golden (tim.golden) * (Python committer) Date: 2009-05-19 21:51
Attempting to build an MSI installer using bdist_msi fails
under Windows when the module contains extension modules.
The assert at line 197 fires as no target version has been
specified. The attached tentative patch makes sure a target
version is set to the current version which has the added
advantage that the installer does not offer all possible
versions which would be inappropriate for a binary extension.

Patch against r72306
msg88276 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2009-05-24 19:20
Thanks for the patch. Committed as r72891 and r72892.

Please use 4-space indents in the future.
History
Date User Action Args
2022-04-11 14:56:49adminsetnosy: + benjamin.peterson
github: 50315
2009-05-24 19:20:14loewissetstatus: open -> closed
resolution: accepted
messages: + msg88276
2009-05-22 19:29:59loewissetpriority: release blocker
assignee: tarek -> loewis

nosy: + loewis
2009-05-20 07:30:46tim.goldensetversions: + Python 2.7
nosy: + tarek

assignee: tarek
components: + Distutils
type: behavior
2009-05-19 21:51:44tim.goldencreate