File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@v3
12
- - name : Set up Python 3.8
12
+ - name : Set up Python 3.12
13
13
uses : actions/setup-python@v4
14
14
with :
15
- python-version : 3.8
15
+ python-version : 3.12
16
16
- name : Install dependencies
17
17
run : |
18
+ echo "* Updating pip"
18
19
python -m pip install --upgrade pip
20
+ echo "* Installing requirements"
19
21
python -m pip install -r requirements.txt
22
+ echo "* Installing documentation requirements"
20
23
python -m pip install -r doc/requirements_doc.txt
21
- python -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
24
+ echo "* Installing PyTorch"
25
+ python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
22
26
- name : Install TensorLy dev
23
27
run : |
24
28
CWD=`pwd`
You can’t perform that action at this time.
0 commit comments