Skip to content

Commit

Permalink
fix(install): Use pip v21.2
Browse files Browse the repository at this point in the history
A change in pip v21.3 causes `-e` in requirements.txt from a github repo to fail

This is a temporary solution until pypa/pip#10573 is fixed.
  • Loading branch information
MarkLark86 committed Oct 13, 2021
1 parent 04e08bf commit ac9bc7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nose-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade 'pip<21.3' wheel setuptools
pip install -r dev-requirements.txt
- name: Nosetests
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade 'pip<21.3' wheel setuptools
pip install -r dev-requirements.txt
- name: Behave
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade 'pip<21.3' wheel setuptools
pip install -r dev-requirements.txt
- name: Behave
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install --upgrade 'pip<21.3' wheel setuptools
pip install -r dev-requirements.txt
- name: prodapi-pytest
Expand Down

0 comments on commit ac9bc7f

Please sign in to comment.