Skip to content

Commit

Permalink
update torchvision version in macos ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fcakyon committed Jun 18, 2022
1 parent 70040df commit c33a74a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_torch1.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
pip install torch==1.10.2+cpu torchvision==0.11.3+cpu
-f https://download.pytorch.org/whl/torch_stable.html
- name: Install PyTorch on MacOS
- name: Install PyTorch(1.10.2) and TorchVision(0.11.2) on MacOS
if: matrix.operating-system == 'macos-latest'
run: pip install torch==1.10.2 torchvision==0.11.3
run: pip install torch==1.10.2 torchvision==0.11.2

- name: Install MMDetection(2.25.0) with MMCV(1.5.3)
run: >
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ jobs:
- name: Update pip
run: python -m pip install --upgrade pip

- name: Install PyTorch on Linux and Windows
- name: Install PyTorch(1.11.0) and TorchVision(0.12.0) on Linux and Windows
if: >
matrix.operating-system == 'ubuntu-latest' ||
matrix.operating-system == 'windows-latest'
run: >
pip install torch==1.10.2+cpu torchvision==0.11.3+cpu
-f https://download.pytorch.org/whl/torch_stable.html
- name: Install PyTorch on MacOS
- name: Install PyTorch(1.10.2) and TorchVision(0.11.2) on MacOS
if: matrix.operating-system == 'macos-latest'
run: pip install torch==1.10.2 torchvision==0.11.3
run: pip install torch==1.10.2 torchvision==0.11.2

- name: Install MMDetection(2.25.0) with MMCV(1.5.3)
run: >
Expand Down

0 comments on commit c33a74a

Please sign in to comment.