From fa1a8e8371a2a6567901e8b5dcd7259f0e1e7352 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Mon, 18 Jan 2021 10:57:31 -0500 Subject: [PATCH] Upgrade pip used in GitHub Actions From pip 20.1+ onward, "pip cache dir" can be used to find location of pip cache, and this is useful across all three major OSes supported by GitHub Actions. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd5049104..50a1a3d2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: - name: Install Python packages run: | - pip install --upgrade codecov tox setuptools + pip install --upgrade codecov tox setuptools pip pip list - name: Display tool versions @@ -114,7 +114,7 @@ jobs: - name: Install Python packages run: | - pip install --upgrade tox + pip install --upgrade tox pip pip list - name: Display tool versions @@ -166,7 +166,7 @@ jobs: - name: Install Python packages run: | - pip install --upgrade tox + pip install --upgrade tox pip pip list - name: Display tool versions