Skip to content

PEP 599: Updates #1181

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

Merged
merged 3 commits into from
Sep 30, 2019
Merged
Changes from all commits
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
17 changes: 8 additions & 9 deletions pep-0599.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ the ``manylinux2014`` tag:
x86_64
i686
aarch64
armhfp
armv7l
ppc64
ppc64le
s390x

This list adds support for ARM (aarch64, armhfp) and PowerPC
This list adds support for ARMv7 (armv7l), ARMv8 (aarch64) and PowerPC
(ppc64, ppc64le) architectures supported by the CentOS Alternative
Architecture Special Interest Group, as well as the IBM Z (s390x)
architecture. [5]_
Expand Down Expand Up @@ -166,7 +166,7 @@ the ``manylinux2014`` tag:
GLIBC_2.17
CXXABI_1.3.7
GLIBCXX_3.4.19
GCC_4.8.5
GCC_4.8.0

As an example, ``manylinux2014`` wheels may include binary
artifacts that require ``glibc`` symbols at version ``GLIBC_2.12``,
Expand Down Expand Up @@ -229,7 +229,7 @@ Specifically, the algorithm we propose is::
"linux-x86_64",
"linux-i686",
"linux-aarch64",
"linux-armhfp",
"linux-armv7l",
"linux-ppc64",
"linux-ppc64le",
"linux-s390x",
Expand Down Expand Up @@ -280,19 +280,18 @@ References

.. [1] CentOS Product Specifications
(https://wiki.centos.org/About/Product)
.. [2] PEP 425 -- Compatibility Tags for Built Distributions
.. [2] PEP 425: Compatibility Tags for Built Distributions
(https://www.python.org/dev/peps/pep-0425/)
.. [3] Tracking issue for manylinux2010 rollout
(https://github.com/pypa/manylinux/issues/179)
.. [4] Red Hat Universal Base Image 7
(https://access.redhat.com/containers/?tab=overview#/registry.access.redhat.com/ubi7)
(https://wiki.centos.org/SpecialInterestGroup/AltArch)
.. [5] The CentOS Alternative Architecture Special Interest Group
(https://wiki.centos.org/SpecialInterestGroup/AltArch)
.. [6] PEP 3149
https://www.python.org/dev/peps/pep-3149/
.. [6] PEP 3149: ABI version tagged .so files
(https://www.python.org/dev/peps/pep-3149/)
.. [7] SOABI support for Python 2.X and PyPy
https://github.com/pypa/pip/pull/3075
(https://github.com/pypa/pip/pull/3075)
.. [8] auditwheel
(https://github.com/pypa/auditwheel/)

Expand Down