https://github.com/python/cpython/commit/c79c515671366a38471e1f64bb8b04160ad4b471
commit: c79c515671366a38471e1f64bb8b04160ad4b471
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2024-07-27T02:18:34Z
summary:

[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 4a2607c1807982a107445b5a35240f587a61eb0d)

Co-authored-by: Russell Keith-Magee <[email protected]>

files:
M Lib/sysconfig/__init__.py

diff --git a/Lib/sysconfig/__init__.py b/Lib/sysconfig/__init__.py
index 83e057c177f8c0..80aef3447117e5 100644
--- a/Lib/sysconfig/__init__.py
+++ b/Lib/sysconfig/__init__.py
@@ -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:

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to