diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2024-07-16 04:23:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 04:23:35 (GMT) |
commit | 7e91e0dcfe2faab1e1a4630e6f745aa30ca87b3d (patch) | |
tree | 648f93972c720cb1cc5918cea30414e6f5c48427 /iOS | |
parent | 2bac2b86b1486f15038fb246835e04bb1b213cd8 (diff) | |
download | cpython-7e91e0dcfe2faab1e1a4630e6f745aa30ca87b3d.zip cpython-7e91e0dcfe2faab1e1a4630e6f745aa30ca87b3d.tar.gz cpython-7e91e0dcfe2faab1e1a4630e6f745aa30ca87b3d.tar.bz2 |
gh-120831: Increase the default minimum supported iOS version to 13.0 (#121250)
Increases the default minimum iOS version to 13.0.
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'iOS')
-rw-r--r-- | iOS/README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iOS/README.rst b/iOS/README.rst index 96cb00e..4d7c344 100644 --- a/iOS/README.rst +++ b/iOS/README.rst @@ -188,7 +188,7 @@ especially important, as many parts of the standard library (including the ``ctypes`` module at runtime. By default, Python will be compiled with an iOS deployment target (i.e., the -minimum supported iOS version) of 12.0. To specify a different deployment +minimum supported iOS version) of 13.0. To specify a different deployment target, provide the version number as part of the ``--host`` argument - for example, ``--host=arm64-apple-ios15.4-simulator`` would compile an ARM64 simulator build with a deployment target of 15.4. |