Skip to content

Commit

Permalink
new release version
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Feb 22, 2021
1 parent 1a3427b commit 07e3eae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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(torchsplineconv)
set(CMAKE_CXX_STANDARD 14)
set(TORCHSPLINECONV_VERSION 1.5.4)
set(TORCHSPLINECONV_VERSION 1.2.1)

option(WITH_CUDA "Enable CUDA support" OFF)

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

setup(
name='torch_spline_conv',
version='1.2.0',
version='1.2.1',
author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de',
url='https://github.com/rusty1s/pytorch_spline_conv',
Expand Down
2 changes: 1 addition & 1 deletion torch_spline_conv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import torch

__version__ = '1.2.0'
__version__ = '1.2.1'

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

Expand Down

0 comments on commit 07e3eae

Please sign in to comment.