Skip to content

Commit 5b5d8cb

Browse files
committed
👷 add --upgrade flag to pip install
1 parent 5e078c4 commit 5b5d8cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip
22-
pip install -r requirements.txt -r requirements.dev.txt
22+
pip install -r requirements.txt -r requirements.dev.txt --upgrade
2323
- name: Run tests with pytest
2424
run: pytest
2525

.github/workflows/python-test-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install -r requirements.txt -r requirements.dev.txt
24+
pip install -r requirements.txt -r requirements.dev.txt --upgrade
2525
- name: Run tests with pytest
2626
run: pytest
2727

0 commit comments

Comments
 (0)