Skip to content

Commit 98b131f

Browse files
authored
upgrade pip before poetry install
1 parent 962c47a commit 98b131f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/python-app.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
4545
- name: Install dependencies
4646
if: steps.cached-poetry-dependencies.outputs.catch-hit != 'true'
47-
run: poetry install
47+
run: |
48+
poetry run pip install --upgrade pip
49+
poetry install
4850
# Install pandoc for building docs
4951
- name: Install pandoc for Ubuntu
5052
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)