Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP 738: Mark as Final #3982

Merged
merged 6 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions peps/pep-0011.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ Tier 3
================================ =========================== ========
Target Triple Notes Contacts
================================ =========================== ========
aarch64-linux-android Russell Keith-Magee, Petr Viktorin
aarch64-pc-windows-msvc Steve Dower
arm64-apple-ios iOS on device Russell Keith-Magee, Ned Deily
arm64-apple-ios-simulator iOS on M1 macOS simulator Russell Keith-Magee, Ned Deily
Expand All @@ -129,6 +130,7 @@ powerpc64le-unknown-linux-gnu glibc, clang Victor Stinner

glibc, gcc Victor Stinner
s390x-unknown-linux-gnu glibc, gcc Victor Stinner
x86_64-linux-android Russell Keith-Magee, Petr Viktorin
x86_64-unknown-freebsd BSD libc, clang Victor Stinner
================================ =========================== ========

Expand Down
8 changes: 5 additions & 3 deletions peps/pep-0738.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ Title: Adding Android as a supported platform
Author: Malcolm Smith <[email protected]>
Sponsor: Petr Viktorin <[email protected]>
Discussions-To: https://discuss.python.org/t/pep-738-adding-android-as-a-supported-platform/40975
Status: Accepted
Status: Final
Type: Standards Track
Created: 12-Dec-2023
Python-Version: 3.13
Resolution: https://discuss.python.org/t/pep-738-adding-android-as-a-supported-platform/40975/23

.. canonical-doc:: :ref:`py3.13:using-android`
AA-Turner marked this conversation as resolved.
Show resolved Hide resolved


Abstract
========
Expand Down Expand Up @@ -289,8 +291,6 @@ namedtuple containing the following:
* ``release`` - Android version of the device, as a string (e.g. ``"14"``)
* ``api_level`` - :ref:`API level <738-os-versions>` of the device, as an
integer (e.g. ``34``)
* ``min_api_level`` - Minimum API level this build of Python can run on, as
an integer (e.g. ``23``). This is the same as ``sys.getandroidapilevel``.
* ``manufacturer`` - `manufacturer
<https://developer.android.com/reference/android/os/Build#MANUFACTURER>`__ of
the device, as a string (e.g. ``"Google"``)
Expand All @@ -300,6 +300,8 @@ namedtuple containing the following:
* ``device`` - `device name
<https://developer.android.com/reference/android/os/Build#DEVICE>`__ of the
device, as a string (e.g. ``"panther"``)
* ``is_simulator`` - ``True`` if the device is an emulator; ``False`` if it’s a
physical device.
AA-Turner marked this conversation as resolved.
Show resolved Hide resolved

Which one of ``model`` and ``device`` is more likely to be unique, and which one
is more likely to resemble the marketing name, varies between different
Expand Down
Loading