Skip to content

Commit

Permalink
use python -m pip instead of pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
1kastner authored Dec 9, 2023
1 parent 1076699 commit 6f459ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:

- name: Use latest version of pip
run: |
pip3 install --upgrade pip
python -m pip install --upgrade pip
- name: Install Python dependencies including pylint
run: |
pip3 install --user -e .[dev]
python -m pip install --user -e .[dev]
- name: Check code quality with pylint
run: |
Expand Down

0 comments on commit 6f459ba

Please sign in to comment.