Skip to content

Commit 5ce60ec

Browse files
committed
version up
1 parent c72f36c commit 5ce60ec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.8)
4+
set(TORCHSCATTER_VERSION 2.0.9)
55

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

conda/pytorch-scatter/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pytorch-scatter
3-
version: 2.0.8
3+
version: 2.0.9
44

55
source:
66
path: ../..

setup.py

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

8383
setup(
8484
name='torch_scatter',
85-
version='2.0.8',
85+
version='2.0.9',
8686
author='Matthias Fey',
8787
author_email='[email protected]',
8888
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.8'
7+
__version__ = '2.0.9'
88

99
for library in ['_version', '_scatter', '_segment_csr', '_segment_coo']:
1010
cuda_spec = importlib.machinery.PathFinder().find_spec(

0 commit comments

Comments
 (0)