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.
2 parents 4e37d39 + 2f66cd6 commit 2ef51a4Copy full SHA for 2ef51a4
.github/workflows/ci.yml
@@ -27,7 +27,10 @@ jobs:
27
- name: "Install dependencies"
28
run: |
29
python -m pip install --upgrade pip
30
- python -m pip install --upgrade --editable .[dev]
+ # We use '--ignore-installed' to avoid GitHub's cache which can cause
31
+ # issues - we have seen packages from this cache be cause trouble with
32
+ # pip-extra-reqs.
33
+ python -m pip install --ignore-installed --upgrade --editable .[dev]
34
sudo apt-get install -y enchant
35
36
- name: "Lint"
0 commit comments