Skip to content

Commit fb48f52

Browse files
committed
verison up
1 parent 0841c7c commit fb48f52

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ install:
103103
- source script/torch.sh
104104
- pip install flake8 codecov
105105
- pip install scipy==1.4.1
106-
- pip install .[test]
106+
- python setup.py install
107107
script:
108108
- flake8 .
109109
- python setup.py test

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(torchcluster)
33
set(CMAKE_CXX_STANDARD 14)
4-
set(TORCHCLUSTER_VERSION 1.5.6)
4+
set(TORCHCLUSTER_VERSION 1.5.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
@@ -63,7 +63,7 @@ def get_extensions():
6363

6464
setup(
6565
name='torch_cluster',
66-
version='1.5.6',
66+
version='1.5.7',
6767
author='Matthias Fey',
6868
author_email='matthias.fey@tu-dortmund.de',
6969
url='https://github.com/rusty1s/pytorch_cluster',

torch_cluster/__init__.py

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

44
import torch
55

6-
__version__ = '1.5.6'
6+
__version__ = '1.5.7'
77

88
for library in [
99
'_version', '_grid', '_graclus', '_fps', '_rw', '_sampler', '_nearest',

0 commit comments

Comments
 (0)