From fbd42e5498323248d9811f666af4a77016409a3c Mon Sep 17 00:00:00 2001 From: JessicaTegner Date: Sun, 7 Sep 2025 16:04:47 +0200 Subject: [PATCH 1/2] separate pip install commands --- .github/workflows/ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 678f764..8505447 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,8 @@ jobs: uses: r-lib/actions/setup-tinytex@v2 - name: Install and configure Poetry run: | - pip3 install -U poetry setuptools + pip3 install -U setuptools wheel + pip3 install -U poetry poetry config virtualenvs.in-project true - name: Set up cache uses: actions/cache@v4 From 4514b8f108a9801d65704b427c5c776c05bcfe43 Mon Sep 17 00:00:00 2001 From: JessicaTegner Date: Sun, 7 Sep 2025 16:17:49 +0200 Subject: [PATCH 2/2] pypy 3.9 dropped, pypy3.11 added --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8505447..a58ebff 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, ubuntu-24.04, macos-15, macos-14, windows-2022] - python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9", "pypy3.10", ] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10", "pypy3.11", ] runs-on: ${{ matrix.os }} steps: - name: Check out repository