Skip to content

Commit

Permalink
Don't install dependencies with --user for Python 2.7 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Mar 4, 2024
1 parent da2ec04 commit abe5c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ jobs:
- name: Install requirements
run: |
pip install --user --upgrade pip setuptools wheel
pip install --user --upgrade -r tests/requirements.txt
pip install ${{ matrix.python == '2.7' && '' || '--user' }} --upgrade pip setuptools wheel
pip install ${{ matrix.python == '2.7' && '' || '--user' }} --upgrade -r tests/requirements.txt
- name: Select GCC
if: matrix.gcc
Expand Down

0 comments on commit abe5c85

Please sign in to comment.