From d7af332ea4b403a2c313c986a15371c3242d8133 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Fri, 13 Aug 2021 21:31:37 -0400 Subject: [PATCH] Remove pip cache as we need to flush This reverts commit 6958e1a603894ea88a1bbb96e553c96356552097. --- .github/workflows/test_python.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index dadd749b36..dd6fa30f16 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -54,14 +54,6 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - name: pip cache - uses: actions/cache@v2 - with: - path: ~/.cache/pip - key: - ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - run: | sudo apt update sudo apt install gcc-${{ matrix.gcc }} g++-${{ matrix.gcc }}