From 26fbf1c3cbfdb0990b56aa4c44a0e922b08f4d37 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 18 May 2026 21:29:37 -0700 Subject: [PATCH] ci: unpin pypy-3.11 version in CI Remove temporary pypy-3.11-v7.3.21 pins that were added pending investigation of issue #6049. Use unversioned pypy-3.11 to allow setup-python to resolve the latest available version. Assisted-by: OpenCode:glm-5 --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a4e971545..1dc12a7679 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,8 +48,7 @@ jobs: python-version: '3.14t' cmake-args: -DCMAKE_CXX_STANDARD=17 -DPYBIND11_TEST_SMART_HOLDER=ON - runs-on: ubuntu-latest - # Temporarily pinned pending investigation in issue #6049. - python-version: 'pypy-3.11-v7.3.21' + python-version: 'pypy-3.11' cmake-args: -DCMAKE_CXX_STANDARD=17 - runs-on: ubuntu-latest python-version: 'graalpy-24.2' @@ -119,8 +118,7 @@ jobs: python-version: 'pypy-3.10' cmake-args: -DCMAKE_CXX_STANDARD=17 - runs-on: macos-latest - # Temporarily pinned pending investigation in issue #6049. - python-version: 'pypy-3.11-v7.3.21' + python-version: 'pypy-3.11' - runs-on: macos-latest python-version: 'graalpy-24.2' @@ -153,8 +151,7 @@ jobs: python-version: 'pypy-3.10' cmake-args: -DCMAKE_CXX_STANDARD=17 - runs-on: windows-latest - # Temporarily pinned pending investigation in issue #6049. - python-version: 'pypy3.11-v7.3.21' + python-version: 'pypy-3.11' cmake-args: -DCMAKE_CXX_STANDARD=20 # The setup-python action currently doesn't have graalpy for windows # See https://github.com/actions/setup-python/pull/880