From 9d64c1e3cc9acf65c0c63fd807722e9223547c31 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 26 Apr 2021 11:13:21 -0700 Subject: [PATCH] Use python -mpip to install pip in github actions This fixes installation on windows --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9743546..3e84b3c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }}