Skip to content

Add distribution default compatibility #1013

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 5 commits into from
Feb 28, 2021
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
30 changes: 19 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,25 @@ Wheel packages compliant with those tags can be uploaded to
<https://pypi.python.org/pypi/twine>`_) and can be installed with
pip:

+-------------------+----------------------------------+--------------------------------------------+
| ``manylinux`` tag | Client-side pip version required | CPython version embedding a compatible pip |
+===================+==================================+============================================+
| ``manylinux_x_y`` | pip >= 20.3 | 3.10.0+ |
+-------------------+----------------------------------+--------------------------------------------+
| ``manylinux2014`` | pip >= 19.3 | 3.7.8+, 3.8.4+, 3.9.0+ |
+-------------------+----------------------------------+--------------------------------------------+
| ``manylinux2010`` | pip >= 19.0 | 3.7.3+, 3.8.0+ |
+-------------------+----------------------------------+--------------------------------------------+
| ``manylinux1`` | pip >= 8.1.0 | 3.5.2+, 3.6.0+ |
+-------------------+----------------------------------+--------------------------------------------+
+-------------------+------------------+----------------------------+-------------------------------------------+
| ``manylinux`` tag | Client-side pip | CPython (sources) version | Distribution default pip compatibility |
| | version required | embedding a compatible pip | |
+===================+==================+============================+===========================================+
| ``manylinux_x_y`` | pip >= 20.3 | 3.10.0+ | Fedora 34+, Mageia 8+, |
| | | | Photon OS 3.0 with updates |
+-------------------+------------------+----------------------------+-------------------------------------------+
| ``manylinux2014`` | pip >= 19.3 | 3.7.8+, 3.8.4+, 3.9.0+ | Fedora 32+, Mageia 8+, |
| | | | Photon OS 4.0+ (3.0+ with updates), |
| | | | Ubuntu 20.04+ |
+-------------------+------------------+----------------------------+-------------------------------------------+
| ``manylinux2010`` | pip >= 19.0 | 3.7.3+, 3.8.0+ | ALT Linux 9+, Fedora 30+, Mageia 7+, |
| | | | Photon OS 4.0+ (3.0+ with updates), |
| | | | Ubuntu 20.04+ |
+-------------------+------------------+----------------------------+-------------------------------------------+
| ``manylinux1`` | pip >= 8.1.0 | 3.5.2+, 3.6.0+ | ALT Linux 8+, Amazon Linux 1+, CentOS 7+, |
| | | | Debian 9+, Fedora 25+, openSUSE 15.2+, |
| | | | Mageia 7+, Photon OS 1.0+, Ubuntu 16.04+ |
+-------------------+------------------+----------------------------+-------------------------------------------+

The various manylinux tags allow projects to distribute wheels that are
automatically installed (and work!) on the vast majority of desktop
Expand Down