Skip to content

Commit 6cfdb3a

Browse files
authored
Fix CI on Windows (#748)
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.
1 parent 075114c commit 6cfdb3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install Python Deps
6363
if: steps.release.outputs.version == 0
6464
run: |
65-
pip install -U pip setuptools
65+
python -m pip install -U pip setuptools
6666
pip install -e .[test]
6767
6868
- name: Test
@@ -118,7 +118,7 @@ jobs:
118118
- name: Install Python Deps
119119
if: steps.release.outputs.version == 0
120120
run: |
121-
pip install -U pip setuptools
121+
python -m pip install -U pip setuptools
122122
pip install -e .[test]
123123
124124
- name: Test

0 commit comments

Comments
 (0)