Skip to content

Commit

Permalink
use latest version of pip (#2846)
Browse files Browse the repository at this point in the history
  • Loading branch information
purificant committed Oct 9, 2021
1 parent 6d39c90 commit c05b0e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -103,7 +103,9 @@ jobs:
key: python-dependencies-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements-ci.txt') }}-${{ env.pythonLocation }}

- name: Install dependencies on cache miss
run: pip install --upgrade --requirement requirements-ci.txt
run: |
pip install --no-cache-dir --upgrade pip
pip install --no-cache-dir --upgrade --requirement requirements-ci.txt
if: steps.restore-cache.outputs.cache-hit != 'true'

- name: Use cached nltk data
Expand Down

0 comments on commit c05b0e7

Please sign in to comment.