From ede658f464adbe3ee4904fd41adb137071856450 Mon Sep 17 00:00:00 2001 From: A5rocks Date: Sun, 1 Sep 2024 10:48:38 +0900 Subject: [PATCH] Disable caching to make CI pass --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 074943ec6..0c3cf098d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,8 +64,10 @@ 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 }}' - cache: pip - cache-dependency-path: test-requirements.txt + # 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 - name: Run tests run: ./ci.sh shell: bash