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

Support for musllinux_1_1 images will be dropped on 2024-11-01 #1629

Closed
mayeut opened this issue Jun 8, 2024 · 1 comment · Fixed by #1672
Closed

Support for musllinux_1_1 images will be dropped on 2024-11-01 #1629

mayeut opened this issue Jun 8, 2024 · 1 comment · Fixed by #1672

Comments

@mayeut
Copy link
Member

mayeut commented Jun 8, 2024

musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).

Statistics for musl (mostly Alpine but also some OpenWRT)

BigQuery sql query:

SELECT
  details.distro.name as distro_name,
  details.distro.version as distro_version,
  details.distro.libc.lib as libc_name,
  details.distro.libc.version as libc_version,
  COUNT(*) as download_count,
FROM `bigquery-public-data.pypi.file_downloads`
WHERE timestamp BETWEEN TIMESTAMP_ADD(CURRENT_TIMESTAMP(), INTERVAL -6 DAY) AND TIMESTAMP_ADD(CURRENT_TIMESTAMP(), INTERVAL -1 DAY)
  AND details.installer.name = "pip"
  AND details.system.name = "Linux"
  AND file.filename LIKE "%musllinux%"
  AND (details.distro.libc.lib IS NULL OR details.distro.libc.lib != "glibc")
GROUP BY
  distro_name, distro_version, libc_name, libc_version
ORDER BY
  download_count DESC
LIMIT 100

Once reduced, this gives:

version percentage
musllinux_1_2 97.5 %
musllinux_1_1 2.5 %
@mayeut mayeut pinned this issue Jun 8, 2024
@mayeut mayeut changed the title Support for musllinux_1_1 images will be dropped November 1st, 2024 Support for musllinux_1_1 images will be dropped on 2024-11-01 Jun 8, 2024
mr-c added a commit to common-workflow-language/cwltool that referenced this issue Oct 24, 2024
cicircle: upgrade the machine size

Stop building for musllinux_1_1

> musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).

pypa/manylinux#1629
mr-c added a commit to common-workflow-language/cwltool that referenced this issue Oct 24, 2024
- cibuildwheel: adjust pytest parallel execution
- cicircle: upgrade to ubuntu 24.04
- Stop building for musllinux_1_1
  pypa/manylinux#1629
  > musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).
mr-c added a commit to common-workflow-language/cwltool that referenced this issue Oct 24, 2024
- cibuildwheel: adjust pytest parallel execution
- cicircle: upgrade to ubuntu 24.04
- Stop building for musllinux_1_1
  pypa/manylinux#1629
  > musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).
@mayeut
Copy link
Member Author

mayeut commented Nov 1, 2024

The last commit with musllinux_1_1 support is 2f07c30

mr-c added a commit to common-workflow-language/schema_salad that referenced this issue Nov 5, 2024
> musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).

pypa/manylinux#1629
mr-c added a commit to common-workflow-language/schema_salad that referenced this issue Nov 5, 2024
> musl libc 1.1 is EOL and Alpine Linux 3.12 also (support ended 2 years ago, May 1st, 2022).

pypa/manylinux#1629
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant