Skip to content

Commit e9171f8

Browse files
committed
update build process
1 parent 88b8bd1 commit e9171f8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22

3+
echo "Compiling kernel..."
4+
35
TORCH=$(python -c "import os; import torch; print(os.path.dirname(torch.__file__))")
46
SRC_DIR=torch_scatter/kernel
57
BUILD_DIR=torch_scatter/build

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
from setuptools import setup, find_packages
44

5-
import build # noqa
6-
7-
__version__ = '0.2.1'
5+
__version__ = '0.2.2'
86
url = 'https://github.com/rusty1s/pytorch_scatter'
97

108
install_requires = ['cffi']
11-
setup_requires = ['pytest-runner', 'cffi']
12-
tests_require = ['pytest', 'pytest-cov']
9+
setup_requires = ['cffi']
10+
tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
1311
docs_require = ['Sphinx', 'sphinx_rtd_theme']
1412

1513
setup(

torch_scatter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .functions.max import scatter_max_, scatter_max
77
from .functions.min import scatter_min_, scatter_min
88

9-
__version__ = '0.2.1'
9+
__version__ = '0.2.2'
1010

1111
__all__ = [
1212
'scatter_add_', 'scatter_add', 'scatter_sub_', 'scatter_sub',

0 commit comments

Comments
 (0)