Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Oct 22, 2021
1 parent c72f36c commit 5ce60ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.0)
project(torchscatter)
set(CMAKE_CXX_STANDARD 14)
set(TORCHSCATTER_VERSION 2.0.8)
set(TORCHSCATTER_VERSION 2.0.9)

option(WITH_CUDA "Enable CUDA support" OFF)

Expand Down
2 changes: 1 addition & 1 deletion conda/pytorch-scatter/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pytorch-scatter
version: 2.0.8
version: 2.0.9

source:
path: ../..
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_extensions():

setup(
name='torch_scatter',
version='2.0.8',
version='2.0.9',
author='Matthias Fey',
author_email='[email protected]',
url='https://github.com/rusty1s/pytorch_scatter',
Expand Down
2 changes: 1 addition & 1 deletion torch_scatter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import torch

__version__ = '2.0.8'
__version__ = '2.0.9'

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

0 comments on commit 5ce60ec

Please sign in to comment.