From a9df232cc39a65156958d74312d85f7b5a7c4305 Mon Sep 17 00:00:00 2001 From: scito Date: Sat, 1 Mar 2025 15:47:40 +0100 Subject: [PATCH] ci: exclude pypy3.10 and pypy3.11 for ubuntu-24.04-arm --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 844b8df..63a7b94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,17 @@ jobs: platform: "windows-latest" - python-version: "pypy3.11" platform: "windows-latest" + - python-version: "pypy3.10" + platform: "ubuntu-24.04-arm" + - python-version: "pypy3.11" + platform: "ubuntu-24.04-arm" runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - # TODO replace setup-python@main with setup-python@v5 if https://github.com/actions/setup-python/pull/1011 is released (>=v5.5) - uses: actions/setup-python@main + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} check-latest: ${{ github.event_name == 'schedule' }}