This commit is contained in:
Bert Blommers 2021-07-26 06:53:10 +01:00 committed by GitHub
parent e0d3b9145f
commit 0aa588f6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ jobs:
- name: Update pip - name: Update pip
if: ${{ steps.pip-cache.outputs.cache-hit != 'true' && matrix.python-version != '2.7' }} if: ${{ steps.pip-cache.outputs.cache-hit != 'true' && matrix.python-version != '2.7' }}
run: | run: |
python -m pip install --upgrade pip python -m pip install pip==21.1.3
- name: Install project dependencies - name: Install project dependencies
if: ${{ steps.pip-cache.outputs.cache-hit != 'true' }} if: ${{ steps.pip-cache.outputs.cache-hit != 'true' }}
run: | run: |
@ -94,7 +94,8 @@ jobs:
- name: Update pip - name: Update pip
if: ${{ matrix.python-version != '2.7' }} if: ${{ matrix.python-version != '2.7' }}
run: | run: |
python -m pip install --upgrade pip # https://github.com/pypa/pip/issues/10201
python -m pip install pip==21.1.3
# Still need to properly install the dependencies - it will only skip the download part # Still need to properly install the dependencies - it will only skip the download part
- name: Install project dependencies - name: Install project dependencies
run: | run: |
@ -132,7 +133,7 @@ jobs:
- name: Update pip - name: Update pip
if: ${{ matrix.python-version != '2.7' }} if: ${{ matrix.python-version != '2.7' }}
run: | run: |
python -m pip install --upgrade pip python -m pip install pip==21.1.3
- name: Install project dependencies - name: Install project dependencies
run: | run: |
pip install -r requirements-dev.txt pip install -r requirements-dev.txt
@ -180,7 +181,7 @@ jobs:
- name: Update pip - name: Update pip
if: ${{ matrix.python-version != '2.7' }} if: ${{ matrix.python-version != '2.7' }}
run: | run: |
python -m pip install --upgrade pip python -m pip install pip==21.1.3
- name: Install project dependencies - name: Install project dependencies
run: | run: |
pip install -r requirements-dev.txt pip install -r requirements-dev.txt