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 c540263 commit a8b7dfaCopy full SHA for a8b7dfa
.github/workflows/ci.yml
@@ -34,9 +34,12 @@ jobs:
34
35
- name: "Install dependencies"
36
run: |
37
- pip install --upgrade --editable .[dev]
38
- pip install --upgrade 'pip ${{ matrix.pip-version }}'
39
- pip install flake8
+ python -m pip install --upgrade 'pip ${{ matrix.pip-version }}'
+ # We use '--ignore-installed' to avoid GitHub's cache which can cause
+ # issues - we have seen packages from this cache be cause trouble with
40
+ # pip-extra-reqs.
41
+ python -m pip install --ignore-installed --upgrade --editable .[dev]
42
+ python -m pip install flake8
43
44
- name: "Lint"
45
0 commit comments