]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-124487: Updated installer messages and internal docs regarding minimum Windows...
authorWulian <1055917385@qq.com>
Tue, 1 Oct 2024 14:44:18 +0000 (22:44 +0800)
committerGitHub <noreply@github.com>
Tue, 1 Oct 2024 14:44:18 +0000 (15:44 +0100)
Doc/using/windows.rst
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
Tools/msi/purge.py

index 136236f51eb511a9c713beb4d88d646f2335b640..20d872d7639219455d2377ad3f728ead66cb5b5e 100644 (file)
@@ -23,8 +23,9 @@ available for application-local distributions.
 
 As specified in :pep:`11`, a Python release only supports a Windows platform
 while Microsoft considers the platform under extended support. This means that
-Python |version| supports Windows 8.1 and newer. If you require Windows 7
-support, please install Python 3.8.
+Python |version| supports Windows 10 and newer. If you require Windows 7
+support, please install Python 3.8. If you require Windows 8.1 support,
+please install Python 3.12.
 
 There are a number of different installers available for Windows, each with
 certain benefits and downsides.
index 6f50200dc7b251bdba5b12449fab86628f938d75..1e0df5084ff07957d3ddd4db6590eb72f9582f3f 100644 (file)
@@ -3100,7 +3100,7 @@ private:
             } else {
                 BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows Server 2003 or earlier");
             }
-            BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Windows Server 2012 or later is required to continue installation");
+            BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Windows Server 2016 or later is required to continue installation");
         } else {
             if (IsWindows10OrGreater()) {
                 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Target OS is Windows 10 or later");
@@ -3116,7 +3116,7 @@ private:
             } else { 
                 BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Detected Windows XP or earlier");
             }
-            BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Windows 8.1 or later is required to continue installation");
+            BalLog(BOOTSTRAPPER_LOG_LEVEL_ERROR, "Windows 10 or later is required to continue installation");
         }
 
         LocGetString(_wixLoc, L"#(loc.FailureOldOS)", &pLocString);
index e25219a6caf9d45a0ad23f7a68e09b8b03017f35..4a13d368d7c744e8e0f09255a25d844c7211e79d 100644 (file)
@@ -51,14 +51,6 @@ FILES = [
     "test_pdb.msi",
     "tools.msi",
     "ucrt.msi",
-    "Windows6.0-KB2999226-x64.msu",
-    "Windows6.0-KB2999226-x86.msu",
-    "Windows6.1-KB2999226-x64.msu",
-    "Windows6.1-KB2999226-x86.msu",
-    "Windows8.1-KB2999226-x64.msu",
-    "Windows8.1-KB2999226-x86.msu",
-    "Windows8-RT-KB2999226-x64.msu",
-    "Windows8-RT-KB2999226-x86.msu",
 ]
 PATHS = [
     "python-{}.exe".format(m.group(0)),