We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea426b commit 28a4e6fCopy full SHA for 28a4e6f
.github/workflows/tests.yaml
@@ -23,12 +23,13 @@ jobs:
23
run: |
24
python -m pip install --upgrade pip
25
pip install numpy scikit-learn flake8 setuptools
26
+
27
- name: Install torch windows + linux
28
if: ${{matrix.os != 'macos-latest'}}
- pip install torch==1.5.0+cpu torchvision==0.6.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
29
+ run: pip install torch==1.5.0+cpu torchvision==0.6.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
30
- name: Install torch macos
31
if: ${{matrix.os == 'macos-latest'}}
- pip install torch
32
+ run: pip install torch
33
34
- name: Build package
35
0 commit comments