File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ jobs:
12
12
13
13
steps :
14
14
- name : Checkout code
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
16
16
- name : Install Python
17
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v4
18
18
with :
19
- python-version : 3.8
19
+ python-version : 3.9
20
20
- name : Install dependencies
21
21
run : |
22
22
python -m pip install --upgrade pip
23
23
python -m pip install -r requirements.txt
24
24
python -m pip install -r doc/requirements_doc.txt
25
- pip install torch==1.7.0+cpu torchvision==0.8.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
25
+ python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
26
26
- name : Install package
27
27
run : |
28
28
python -m pip install -e .
Original file line number Diff line number Diff line change 5
5
tags :
6
6
- ' *'
7
7
8
-
9
8
jobs :
10
9
build :
11
10
12
11
runs-on : ubuntu-latest
13
12
14
13
steps :
15
14
- name : Checkout code
16
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
17
16
- name : Install Python
18
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v4
19
18
with :
20
- python-version : 3.8
19
+ python-version : 3.9
21
20
- name : Install dependencies
22
21
run : |
23
22
python -m pip install --upgrade pip
24
23
python -m pip install -r requirements.txt
25
24
python -m pip install -r doc/requirements_doc.txt
26
- pip install torch==1.7.0+cpu torchvision==0.8.1+cpu -f https://download.pytorch.org/whl/torch_stable.html
25
+ python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
27
26
- name : Install package
28
27
run : |
29
28
python -m pip install -e .
You can’t perform that action at this time.
0 commit comments