Skip to content

Commit 7c6fa5d

Browse files
committed
version up
1 parent 19a94a9 commit 7c6fa5d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.0)
22
project(torchscatter)
33
set(CMAKE_CXX_STANDARD 14)
4-
set(TORCHSCATTER_VERSION 2.0.6)
4+
set(TORCHSCATTER_VERSION 2.0.7)
55

66
option(WITH_CUDA "Enable CUDA support" OFF)
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_extensions():
8181

8282
setup(
8383
name='torch_scatter',
84-
version='2.0.6',
84+
version='2.0.7',
8585
author='Matthias Fey',
8686
author_email='[email protected]',
8787
url='https://github.com/rusty1s/pytorch_scatter',

torch_scatter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import torch
66

7-
__version__ = '2.0.6'
7+
__version__ = '2.0.7'
88

99
suffix = 'cuda' if torch.cuda.is_available() else 'cpu'
1010

0 commit comments

Comments
 (0)