Skip to content

Commit 38ca57e

Browse files
[3.10] 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 <[email protected]>
1 parent 23b1fd3 commit 38ca57e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/sysconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ def get_platform():
783783
release = m.group()
784784
elif osname[:6] == "darwin":
785785
if sys.platform == "ios":
786-
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "12.0")
786+
release = get_config_vars().get("IPHONEOS_DEPLOYMENT_TARGET", "13.0")
787787
osname = sys.platform
788788
machine = sys.implementation._multiarch
789789
else:

0 commit comments

Comments
 (0)