Skip to content

Commit

Permalink
Use python -m pip instead of pip, to resolve PyPy 3.10 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Oct 9, 2024
1 parent 04a873e commit 7b73119
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit 7b73119

Please sign in to comment.