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 4e37d39 commit 2f66cd6Copy full SHA for 2f66cd6
.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