Skip to content

Cannot install PyPy on Linux arm64 hosted runners: "Error: PyPy version 3.10 (x) with arch arm64 not found" #1010

Closed
@hugovk

Description

@hugovk

Description:
A clear and concise description of what the bug is.

Linux arm64 hosted runners now available for free in public repositories, and Python 3.9-3.14 install on the new ubuntu-24.04-arm and ubuntu-22.04-arm runners, but pypy3.10 fails.

https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/

Action version:
Specify the action version

actions/setup-python@v5
https://github.com/actions/setup-python/releases/tag/v5.3.0

Platform:

  • Ubuntu
    macOS
    Windows

Runner type:

  • Hosted
    Self-hosted

Tools version:

PyPy3.10

Repro steps:
A description with steps to reproduce the issue. If your have a public example or repo to share, please provide the link.

https://github.com/hugovk/test/blob/6157105de6170017b8b4684cb4ac61a997e93661/.github/workflows/test.yml

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        python-version: ["pypy3.10", "3.13"]
        os: [
          windows-latest,
          macos-latest,
          ubuntu-latest,
          ubuntu-22.04-arm,
          ubuntu-24.04-arm,
        ]

    steps:
      - uses: actions/checkout@v4

      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python-version }}

https://github.com/hugovk/test/actions/runs/12842873775/job/35814233523

Expected behavior:

pypy3.10 installs on ubuntu-24.04-arm and ubuntu-22.04-arm, just like on ubuntu-latest, macos-latest, and windows-latest.

Actual behavior:

Run actions/setup-python@v5
Installed versions
  PyPy version 3.[10](https://github.com/hugovk/tinytext/actions/runs/12842839625/job/35814162033#step:3:11) (x) was not found in the local cache
  Stable PyPy version 3.10 (x) with arch arm64 not found
  Trying pre-release versions
  Error: PyPy version 3.10 (x) with arch arm64 not found

Activity

priya-kinthali

priya-kinthali commented on Jan 20, 2025

@priya-kinthali
Contributor

Hello @hugovk 👋,
Thank you for reporting this issue. We will investigate it and get back to you as soon as we have some feedback.

mayeut

mayeut commented on Jan 21, 2025

@mayeut
Contributor

PR #1011 fixes the issue

priyagupta108

priyagupta108 commented on Feb 7, 2025

@priyagupta108
Contributor

Hello @hugovk 👋,
We've successfully merged the fix from PR #1011 into the main branch. The changes are now available on actions/setup-python@main and will be included in the upcoming releases.
If you have any concerns or further questions, please feel free to reach out to us.
Thank you!

hugovk

hugovk commented on Feb 7, 2025

@hugovk
ContributorAuthor

Thank you! Do you know when the next release will be?

Somewhat relatedly: the new PyPy v7.3.18 release just came out, including PyPy3.10 and the first PyPy3.11:

https://pypy.org/posts/2025/02/pypy-v7318-release.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

    Development

    Participants

    @hugovk@mayeut@aparnajyothi-y@priya-kinthali@priyagupta108

    Issue actions

      Cannot install PyPy on Linux arm64 hosted runners: "Error: PyPy version 3.10 (x) with arch arm64 not found" · Issue #1010 · actions/setup-python