Skip to content

Commit 14eae21

Browse files
authored
Workfow test.yml: update python + torch install
1 parent 615fbdd commit 14eae21

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v3
12-
- name: Set up Python 3.8
12+
- name: Set up Python 3.12
1313
uses: actions/setup-python@v4
1414
with:
15-
python-version: 3.8
15+
python-version: 3.12
1616
- name: Install dependencies
1717
run: |
18+
echo "* Updating pip"
1819
python -m pip install --upgrade pip
20+
echo "* Installing requirements"
1921
python -m pip install -r requirements.txt
22+
echo "* Installing documentation requirements"
2023
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
2226
- name: Install TensorLy dev
2327
run: |
2428
CWD=`pwd`

0 commit comments

Comments
 (0)