Skip to content

Commit

Permalink
Fix CI on Windows (#748)
Browse files Browse the repository at this point in the history
Due to executable file locking `pip install -U pip` doesn't work on
Windows, one has to use `python -m pip install -U pip` instead.
  • Loading branch information
elprans committed Apr 24, 2021
1 parent 075114c commit 6cfdb3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install Python Deps
if: steps.release.outputs.version == 0
run: |
pip install -U pip setuptools
python -m pip install -U pip setuptools
pip install -e .[test]
- name: Test
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Install Python Deps
if: steps.release.outputs.version == 0
run: |
pip install -U pip setuptools
python -m pip install -U pip setuptools
pip install -e .[test]
- name: Test
Expand Down

0 comments on commit 6cfdb3a

Please sign in to comment.