Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Apr 30, 2018
1 parent 2d253c1 commit 6b18f2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ SRC_DIR=aten/THC
BUILD_DIR=torch_cluster/_ext

mkdir -p $BUILD_DIR
$(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
$(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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = '1.1.0'
__version__ = '1.1.1'
url = 'https://github.com/rusty1s/pytorch_cluster'

install_requires = ['cffi']
Expand Down
2 changes: 1 addition & 1 deletion torch_cluster/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .graclus import graclus_cluster
from .grid import grid_cluster

__version__ = '1.1.0'
__version__ = '1.1.1'

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

0 comments on commit 6b18f2d

Please sign in to comment.