File tree Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 33
33
with :
34
34
python-version : ${{ matrix.python-version }}
35
35
36
- - name : Update pip
37
- run : |
38
- pip install --upgrade pip
39
-
40
36
- name : Install CUDA ${{ matrix.cuda-version }}
41
37
if : ${{ matrix.cuda-version != 'cpu' }}
42
38
run : |
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.0 )
2
2
project (torchscatter )
3
3
set (CMAKE_CXX_STANDARD 14 )
4
- set (TORCHSCATTER_VERSION 2.0.7 )
4
+ set (TORCHSCATTER_VERSION 2.0.8 )
5
5
6
6
option (WITH_CUDA "Enable CUDA support" OFF )
7
7
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pytorch-scatter
3
- version : 2.0.7
3
+ version : 2.0.8
4
4
5
5
source :
6
6
path : ../..
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def get_extensions():
82
82
83
83
setup (
84
84
name = 'torch_scatter' ,
85
- version = '2.0.7 ' ,
85
+ version = '2.0.8 ' ,
86
86
author = 'Matthias Fey' ,
87
87
88
88
url = 'https://github.com/rusty1s/pytorch_scatter' ,
Original file line number Diff line number Diff line change 4
4
5
5
import torch
6
6
7
- __version__ = '2.0.7 '
7
+ __version__ = '2.0.8 '
8
8
9
9
suffix = 'cuda' if torch .cuda .is_available () else 'cpu'
10
10
You can’t perform that action at this time.
0 commit comments