Skip to content

Commit

Permalink
Change integration as well
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed May 25, 2023
1 parent 97c0f5c commit 4e0aae0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- if: matrix.os == 'windows-latest'
- if: matrix.os == 'windows-latest' && matrix.python-version == 3.7
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
python -m pip install 'torch==1.8.0' -f https://download.pytorch.org/whl/cpu/torch/
python -m pip install 'torchvision==0.9.0' -f https://download.pytorch.org/whl/cpu/torchvision/
- if: matrix.os == 'windows-latest' && matrix.python-version != 3.7
name: Install dependencies - Windows
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 4e0aae0

Please sign in to comment.