Closed
Description
@ionelmc was asking in #pypa
whether anyone actually uses 32-bit linux, so I ran some queries, and it looks like currently the answer is:
- numpy: 99.5% of manylinux downloads are 64-bit
- lxml: 99.8% of manylinux downloads are 64-bit
So no, almost no-one uses 32-bit linux. I figured I'd open an issue to write down this observation, and raise the question of whether (or when) we should stop bothering to make 32-bit manylinux images.
Noting for future reference:
SELECT
COUNT(*) AS downloads,
REGEXP_EXTRACT(file.filename, r'.*-(manylinux[^-]+)') AS manylinux
FROM
TABLE_DATE_RANGE([the-psf:pypi.downloads], TIMESTAMP("20171120"), CURRENT_TIMESTAMP())
WHERE
file.project = 'lxml'
GROUP BY
manylinux
ORDER BY
downloads DESC
LIMIT
1000
Metadata
Metadata
Assignees
Labels
No labels