Add _msi.pyd.
Add warning on Win9x.
This commit is contained in:
parent
d149c21d54
commit
8c7c56e7c3
@ -107,6 +107,7 @@ extensions = [
|
|||||||
'_ssl.pyd',
|
'_ssl.pyd',
|
||||||
'_testcapi.pyd',
|
'_testcapi.pyd',
|
||||||
'_tkinter.pyd',
|
'_tkinter.pyd',
|
||||||
|
'_msi.pyd',
|
||||||
]
|
]
|
||||||
|
|
||||||
if major+minor <= "24":
|
if major+minor <= "24":
|
||||||
@ -485,6 +486,11 @@ def add_ui(db):
|
|||||||
" shared Windows expertise, Python for Windows \n"
|
" shared Windows expertise, Python for Windows \n"
|
||||||
" would still be Python for DOS.")
|
" would still be Python for DOS.")
|
||||||
|
|
||||||
|
c = exit_dialog.text("warning", 135, 200, 220, 40, 0x30003,
|
||||||
|
"{\\VerdanaRed9}Warning: Python 2.5.x is the last "
|
||||||
|
"Python release for Windows 9x.")
|
||||||
|
c.condition("Hide", "NOT Version9x")
|
||||||
|
|
||||||
exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
|
exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
|
||||||
"Click the Finish button to exit the Installer.")
|
"Click the Finish button to exit the Installer.")
|
||||||
c = exit_dialog.next("Finish", "Cancel", name="Finish")
|
c = exit_dialog.next("Finish", "Cancel", name="Finish")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user