Skip to content

Commit 73eb982

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 fba9635 commit 73eb982

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
@@ -827,7 +827,7 @@ def get_platform():
827827
release = m.group()
828828
elif osname[:6] == "darwin":
829829
if sys.platform == "ios":
830-
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "12.0")
830+
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "13.0")
831831
osname = sys.platform
832832
machine = sys.implementation._multiarch
833833
else:

0 commit comments

Comments
 (0)