From da9d9204e0c39a4adabf17f35be1046b4390ffeb Mon Sep 17 00:00:00 2001 From: EXPLOSION Date: Tue, 3 Sep 2024 09:31:56 +0900 Subject: [PATCH] Cache issues were transient? --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c3cf098d..074943ec6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,10 +64,8 @@ jobs: # 'PyPy' -> 'pypy-3.9' python-version: ${{ fromJSON(format('["{0}", "{1}"]', format('{0}.0-alpha - {0}.X', matrix.python), matrix.python))[startsWith(matrix.python, 'pypy')] }} architecture: '${{ matrix.arch }}' - # Caching can lead to issues with constraints on PyPy as in #3076. - # This is probably a bug in the cache key, but I'm not sure. - # cache: pip - # cache-dependency-path: test-requirements.txt + cache: pip + cache-dependency-path: test-requirements.txt - name: Run tests run: ./ci.sh shell: bash