Skip to content

Commit 6b18f2d

Browse files
committed
version up
1 parent 2d253c1 commit 6b18f2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ SRC_DIR=aten/THC
77
BUILD_DIR=torch_cluster/_ext
88

99
mkdir -p $BUILD_DIR
10-
$(which nvcc) "-I$TORCH/lib/include" "-I$TORCH/lib/include/TH" "-I$TORCH/lib/include/THC" "-I$SRC_DIR" -c "$SRC_DIR/THC.cu" -o "$BUILD_DIR/THC.o" --compiler-options '-fPIC' -std=c++11
10+
$(which nvcc) "-I$TORCH/lib/include" "-I$TORCH/lib/include/TH" "-I$TORCH/lib/include/THC" "-I$SRC_DIR" -c "$SRC_DIR/THC.cu" -o "$BUILD_DIR/THC.so" --compiler-options '-fPIC' -std=c++11

setup.py

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

33
from setuptools import setup, find_packages
44

5-
__version__ = '1.1.0'
5+
__version__ = '1.1.1'
66
url = 'https://github.com/rusty1s/pytorch_cluster'
77

88
install_requires = ['cffi']

torch_cluster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .graclus import graclus_cluster
22
from .grid import grid_cluster
33

4-
__version__ = '1.1.0'
4+
__version__ = '1.1.1'
55

66
__all__ = ['graclus_cluster', 'grid_cluster', '__version__']

0 commit comments

Comments
 (0)