diff options
author | Wulian <1055917385@qq.com> | 2024-12-09 12:24:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-09 12:24:26 (GMT) |
commit | 5eb7fd4d0fc37b91058086181afebec41e66e5ad (patch) | |
tree | 6ad0ac6256d9a4eaf09eb84561ddd93d0c3edc64 /Lib | |
parent | 2041a95e68ebf6d13f867e214ada28affa830669 (diff) | |
download | cpython-5eb7fd4d0fc37b91058086181afebec41e66e5ad.zip cpython-5eb7fd4d0fc37b91058086181afebec41e66e5ad.tar.gz cpython-5eb7fd4d0fc37b91058086181afebec41e66e5ad.tar.bz2 |
gh-127732: Add Windows Server 2025 detection to platform module (GH-127733)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/platform.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index 239e660..1f6baed 100644 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -353,7 +353,8 @@ _WIN32_CLIENT_RELEASES = [ ] _WIN32_SERVER_RELEASES = [ - ((10, 1, 0), "post2022Server"), + ((10, 1, 0), "post2025Server"), + ((10, 0, 26100), "2025Server"), ((10, 0, 20348), "2022Server"), ((10, 0, 17763), "2019Server"), ((6, 4, 0), "2016Server"), |