gh-120831: Correct default minimum iOS version. (#122339)

Correct default minimum iOS version.
This commit is contained in:
Russell Keith-Magee 2024-07-27 11:53:44 +10:00 committed by GitHub
parent 762e771cc0
commit 4a2607c180
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ def get_platform():
release = m.group()
elif osname[:6] == "darwin":
if sys.platform == "ios":
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "12.0")
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "13.0")
osname = sys.platform
machine = sys.implementation._multiarch
else: