We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a94a9 commit 7c6fa5dCopy full SHA for 7c6fa5d
CMakeLists.txt
@@ -1,7 +1,7 @@
1
cmake_minimum_required(VERSION 3.0)
2
project(torchscatter)
3
set(CMAKE_CXX_STANDARD 14)
4
-set(TORCHSCATTER_VERSION 2.0.6)
+set(TORCHSCATTER_VERSION 2.0.7)
5
6
option(WITH_CUDA "Enable CUDA support" OFF)
7
setup.py
@@ -81,7 +81,7 @@ def get_extensions():
81
82
setup(
83
name='torch_scatter',
84
- version='2.0.6',
+ version='2.0.7',
85
author='Matthias Fey',
86
author_email='matthias.fey@tu-dortmund.de',
87
url='https://github.com/rusty1s/pytorch_scatter',
torch_scatter/__init__.py
@@ -4,7 +4,7 @@
import torch
-__version__ = '2.0.6'
+__version__ = '2.0.7'
8
9
suffix = 'cuda' if torch.cuda.is_available() else 'cpu'
10
0 commit comments