Skip to content

Commit

Permalink
[3.13] gh-120831: Correct default minimum iOS version. (GH-122339) (#…
Browse files Browse the repository at this point in the history
…122341)

gh-120831: Correct default minimum iOS version. (GH-122339)

Correct default minimum iOS version.
(cherry picked from commit 4a2607c)

Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
  • Loading branch information
miss-islington and freakboy3742 authored Jul 27, 2024
1 parent 4fa46cf commit c79c515
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 c79c515

Please sign in to comment.