We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ae814 commit 085d132Copy full SHA for 085d132
1 file changed
.github/workflows/build.yml
@@ -37,12 +37,12 @@ jobs:
37
id: depcache
38
with:
39
path: deps
40
- key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
+ key: requirements-pip-${{ matrix.python-version }}-${{ hashFiles('dev.requirements.txt') }}
41
42
- name: Download dependencies
43
if: steps.depcache.outputs.cache-hit != 'true'
44
run: |
45
- pip download --dest=deps -r requirements.txt
+ pip download --dest=deps -r dev.requirements.txt
46
47
- name: Install dependencies
48
0 commit comments