Skip to content

Commit

Permalink
pythongh-120831: Correct default minimum iOS version. (python#122339)
Browse files Browse the repository at this point in the history
Correct default minimum iOS version.
  • Loading branch information
freakboy3742 authored Jul 27, 2024
1 parent 762e771 commit 4a2607c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/sysconfig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4a2607c

Please sign in to comment.