Skip to content

Commit c23bd48

Browse files
committed
missing package
1 parent 705d708 commit c23bd48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
conda create -q -n test-environment python=${{ matrix.python-version }}
2525
source activate test-environment
2626
if [[ "${{ matrix.pytorch-version }}" == "nightly" ]]; then
27-
conda install pytorch cpuonly -c pytorch-nightly
27+
conda install pytorch torchvision cpuonly -c pytorch-nightly
2828
else
29-
conda install pytorch==${{ matrix.pytorch-version }} cpuonly -c pytorch
29+
conda install pytorch==${{ matrix.pytorch-version }} torchvision cpuonly -c pytorch
3030
fi
3131
conda install flake8
3232
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi

0 commit comments

Comments
 (0)