]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-120831: Correct default minimum iOS version. (#122339)
authorRussell Keith-Magee <russell@keith-magee.com>
Sat, 27 Jul 2024 01:53:44 +0000 (11:53 +1000)
committerGitHub <noreply@github.com>
Sat, 27 Jul 2024 01:53:44 +0000 (01:53 +0000)
Correct default minimum iOS version.

Lib/sysconfig/__init__.py

index 83e057c177f8c0ecbbba3ab08650d22d8e596864..80aef3447117e5ec89061cb7d1bb6213a573f1e4 100644 (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: