From 7b7311941c02d39f6bbee69d2d627105866f7aa2 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 9 Oct 2024 14:01:22 +0200 Subject: [PATCH] Use python -m pip instead of pip, to resolve PyPy 3.10 issue --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd213783..01f1f7ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -210,7 +210,7 @@ jobs: submodules: recursive - name: Setup Python ${{ matrix.python }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} architecture: ${{ matrix.arch }} @@ -226,8 +226,8 @@ jobs: - name: Install requirements run: | - pip install --user --upgrade pip setuptools wheel - pip install --user --upgrade -r tests/requirements.txt + python -m pip install --user --upgrade pip setuptools wheel + python -m pip install --user --upgrade -r tests/requirements.txt - name: Select GCC if: matrix.gcc