Merge pull request #1323 from PyCQA/asottile-patch-1

Use python -mpip to install pip in github actions
This commit is contained in:
Anthony Sottile 2021-04-26 11:15:52 -07:00 committed by GitHub
commit bf6936b503
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,5 +47,5 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install --upgrade setuptools pip tox virtualenv
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}