Skip to content

Commit 71c7548

Browse files
authored
update python path for windows in ci.yml
1 parent 215f52d commit 71c7548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install zarrita
3737
run: |
3838
python -m venv venv_zarrita
39-
venv_zarrita/bin/pip install zarrita
39+
if [ "${{ runner.os }}" = "Windows" ]; then venv_zarrita/Scripts/pip install zarrita; else venv_zarrita/bin/pip install zarrita; fi
4040
4141
- name: Download blosc jar
4242
run: |

0 commit comments

Comments
 (0)