mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
[3.13] gh-120831: Correct default minimum iOS version. (GH-122339) (#122341)
gh-120831: Correct default minimum iOS version. (GH-122339)
Correct default minimum iOS version.
(cherry picked from commit 4a2607c180
)
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
This commit is contained in:
parent
4fa46cfdbd
commit
c79c515671
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ def get_platform():
|
||||||
release = m.group()
|
release = m.group()
|
||||||
elif osname[:6] == "darwin":
|
elif osname[:6] == "darwin":
|
||||||
if sys.platform == "ios":
|
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
|
osname = sys.platform
|
||||||
machine = sys.implementation._multiarch
|
machine = sys.implementation._multiarch
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue