Skip to content

Commit 07aa27d

Browse files
authored
Fix pip upgrade issue (#559)
* Fix pip upgrade issue * Fix pip upgrade issue
1 parent 327246f commit 07aa27d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Install dependencies (python)
5555
run: |
56-
pip install --upgrade pip wheel
56+
python -m pip install --upgrade pip wheel
5757
pip install -r requirements.txt
5858
pip install -r requirements-test.txt
5959
pip install codecov

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Install dependencies (python)
3434
run: |
35-
pip install --upgrade pip wheel twine codecov sphinx nbsphinx ipython ipykernel pydata-sphinx-theme requests sphinx-copybutton matplotlib
35+
python -m pip install --upgrade pip wheel twine codecov sphinx nbsphinx ipython ipykernel pydata-sphinx-theme requests sphinx-copybutton matplotlib
3636
pip install -r requirements.txt
3737
pip install -e .
3838

0 commit comments

Comments
 (0)