Skip to content

Commit

Permalink
ci: use installed pip
Browse files Browse the repository at this point in the history
Upgrading pip unnecessarily can be disruptive, e.g. when pip 20 breaks
[1].  This makes it more predictable, and a bit faster also.

1: pypa/pip#7620
  • Loading branch information
blueyed committed Jan 21, 2020
1 parent a52f791 commit ff05b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip --version
pip install tox coverage
- name: Test without coverage
Expand Down

0 comments on commit ff05b1c

Please sign in to comment.