File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ jobs:
3333 pip install pytest pytest-timeout
3434 - name : Install torch on mac
3535 if : startsWith(matrix.os, 'macOS')
36- run : pip install torch==${{ matrix.torch }} torchvision==${{ matrix.torchvision }}
36+ run : pip install --no-cache-dir torch==${{ matrix.torch }} torchvision==${{ matrix.torchvision }}
3737 - name : Install torch on ubuntu
3838 if : startsWith(matrix.os, 'ubuntu')
39- run : pip install torch==${{ matrix.torch }}+cpu torchvision==${{ matrix.torchvision }}+cpu -f https://download.pytorch.org/whl/torch_stable.html
39+ run : pip install --no-cache-dir torch==${{ matrix.torch }}+cpu torchvision==${{ matrix.torchvision }}+cpu -f https://download.pytorch.org/whl/torch_stable.html
4040 - name : Install requirements
4141 run : |
4242 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
43- pip install git+https://github.com/mapillary/inplace_abn.git@v1.0.11
43+ pip install --no-cache-dir git+https://github.com/mapillary/inplace_abn.git@v1.0.12
4444 - name : Run tests
4545 run : |
4646 pytest -vv --durations=0 ./tests
You can’t perform that action at this time.
0 commit comments