Skip to content

Commit 60258bb

Browse files
[3.12] pythongh-120831: Correct default minimum iOS version. (pythonGH-122339) (python#122341)
pythongh-120831: Correct default minimum iOS version. (pythonGH-122339) Correct default minimum iOS version. (cherry picked from commit 4a2607c) Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
1 parent 1b3190a commit 60258bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/sysconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ def get_platform():
817817
release = m.group()
818818
elif osname[:6] == "darwin":
819819
if sys.platform == "ios":
820-
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "12.0")
820+
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "13.0")
821821
osname = sys.platform
822822
machine = sys.implementation._multiarch
823823
else:

0 commit comments

Comments
 (0)