diff options
author | Steve Dower <steve.dower@python.org> | 2021-11-04 16:39:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 16:39:36 (GMT) |
commit | fd0c84dc28d00d68e4f43034dc41786a682390fd (patch) | |
tree | d67b93f31912ece46370eef5307ad38d43b2750e /PCbuild/python.props | |
parent | 36b4f9e2a7d5ed55c441eb6dfe5c13baa483b9d4 (diff) | |
download | cpython-fd0c84dc28d00d68e4f43034dc41786a682390fd.zip cpython-fd0c84dc28d00d68e4f43034dc41786a682390fd.tar.gz cpython-fd0c84dc28d00d68e4f43034dc41786a682390fd.tar.bz2 |
bpo-45220: Remove invalid include from resource definition files on Windows (GH-29396)
Diffstat (limited to 'PCbuild/python.props')
-rw-r--r-- | PCbuild/python.props | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props index 142c12a..b739e41 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -107,9 +107,6 @@ <!-- Sometimes the version in the registry has to .0 suffix, and sometimes it doesn't. Check and add it --> <_RegistryVersion Condition="$(_RegistryVersion) != '' and !$(_RegistryVersion.EndsWith('.0'))">$(_RegistryVersion).0</_RegistryVersion> - <!-- Avoid upgrading to Windows 11 SDK for now, but assume the latest Win10 SDK is installed --> - <_RegistryVersion Condition="$([System.Version]::Parse($(_RegistryVersion))) >= $([System.Version]::Parse(`10.0.22000.0`))">10.0.19041.0</_RegistryVersion> - <!-- The minimum allowed SDK version to use for building --> <DefaultWindowsSDKVersion>10.0.10586.0</DefaultWindowsSDKVersion> <DefaultWindowsSDKVersion Condition="$(_RegistryVersion) != '' and $([System.Version]::Parse($(_RegistryVersion))) > $([System.Version]::Parse($(DefaultWindowsSDKVersion)))">$(_RegistryVersion)</DefaultWindowsSDKVersion> |