Skip to content

Commit 1a143f3

Browse files
committed
build: go back to not caching pip
This reverts commit 2b53612.
1 parent cf95eda commit 1a143f3

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/coverage.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff 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: |

.github/workflows/testsuite.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)