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 3333 with :
3434 python-version : ${{ matrix.python-version }}
3535
36- - name : Update pip
37- run : |
38- pip install --upgrade pip
39-
4036 - name : Install CUDA ${{ matrix.cuda-version }}
4137 if : ${{ matrix.cuda-version != 'cpu' }}
4238 run : |
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.0)
22project (torchscatter)
33set (CMAKE_CXX_STANDARD 14)
4- set (TORCHSCATTER_VERSION 2.0.7 )
4+ set (TORCHSCATTER_VERSION 2.0.8 )
55
66option (WITH_CUDA "Enable CUDA support" OFF )
77
Original file line number Diff line number Diff line change 11package :
22 name : pytorch-scatter
3- version : 2.0.7
3+ version : 2.0.8
44
55source :
66 path : ../..
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def get_extensions():
8282
8383setup (
8484 name = 'torch_scatter' ,
85- version = '2.0.7 ' ,
85+ version = '2.0.8 ' ,
8686 author = 'Matthias Fey' ,
87878888 url = 'https://github.com/rusty1s/pytorch_scatter' ,
Original file line number Diff line number Diff line change 44
55import torch
66
7- __version__ = '2.0.7 '
7+ __version__ = '2.0.8 '
88
99suffix = 'cuda' if torch .cuda .is_available () else 'cpu'
1010
You can’t perform that action at this time.
0 commit comments