From 16b2a5e0a928bb1d49598aa34bf1bb5db7071863 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 4 Jun 2010 19:15:32 +0000 Subject: [PATCH] Display installer warning that Windows 2000 won't be supported in future releases. --- Misc/NEWS | 3 +++ Tools/msi/msi.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 6540d9cac7..3a5a4498c0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -120,6 +120,9 @@ Tests Build ----- +- Display installer warning that Windows 2000 won't be supported in future + releases. + - Issues #1759169, #8864: Drop _XOPEN_SOURCE on Solaris, define it for multiprocessing only. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index a0d70dea92..d50b1aa3b8 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -503,9 +503,9 @@ def add_ui(db): " 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") + "{\\VerdanaRed9}Warning: Python 2.7.x is the last " + "Python release for Windows 2000.") + c.condition("Hide", "VersionNT > 500") exit_dialog.text("Description", 135, 235, 220, 20, 0x30003, "Click the Finish button to exit the Installer.") -- 2.50.1