Skip to content

Commit 922395b

Browse files
authored
fix the pip install grpcio
1 parent c5ba1da commit 922395b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/actions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
3131
- name: Install dependencies
3232
run: |
33-
pip install torch grpcio protobuf --index-url https://download.pytorch.org/whl/cpu
33+
pip install torch --index-url https://download.pytorch.org/whl/cpu
34+
pip install grpcio protobuf
3435
pip install -e ".[tests]" --progress-bar off
3536
- name: Test with pytest
3637
run: |
@@ -60,7 +61,8 @@ jobs:
6061
- name: Install dependencies
6162
run: |
6263
python -m pip install --upgrade pip setuptools
63-
pip install torch grpcio protobuf --index-url https://download.pytorch.org/whl/cpu
64+
pip install torch --index-url https://download.pytorch.org/whl/cpu
65+
pip install grpcio protobuf
6466
pip install -e .
6567
pip install -r docs/requirements.txt
6668
- name: Build the docs

0 commit comments

Comments
 (0)