File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,11 @@ jobs:
124124 with :
125125 python-version : " ${{ matrix.python-version }}"
126126 allow-prereleases : true
127- cache : pip
128- cache-dependency-path : ' requirements/*.pip'
127+ # At a certain point, installing dependencies failed on pypy 3.9 and
128+ # 3.10 on Windows. Commenting out the cache here fixed it. Someday
129+ # try using the cache again.
130+ # cache: pip
131+ # cache-dependency-path: 'requirements/*.pip'
129132
130133 - name : " Show environment"
131134 run : |
@@ -181,8 +184,11 @@ jobs:
181184 uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
182185 with :
183186 python-version : " 3.10" # Minimum of PYVERSIONS
184- cache : pip
185- cache-dependency-path : ' requirements/*.pip'
187+ # At a certain point, installing dependencies failed on pypy 3.9 and
188+ # 3.10 on Windows. Commenting out the cache here fixed it. Someday
189+ # try using the cache again.
190+ # cache: pip
191+ # cache-dependency-path: 'requirements/*.pip'
186192
187193 - name : " Show environment"
188194 run : |
Original file line number Diff line number Diff line change @@ -120,8 +120,11 @@ jobs:
120120 with :
121121 python-version : " ${{ matrix.python-version }}"
122122 allow-prereleases : true
123- cache : pip
124- cache-dependency-path : ' requirements/*.pip'
123+ # At a certain point, installing dependencies failed on pypy 3.9 and
124+ # 3.10 on Windows. Commenting out the cache here fixed it. Someday
125+ # try using the cache again.
126+ # cache: pip
127+ # cache-dependency-path: 'requirements/*.pip'
125128
126129 - name : " Show environment"
127130 run : |
You can’t perform that action at this time.
0 commit comments