We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d135a2 commit b1072a5Copy full SHA for b1072a5
setup.py
@@ -20,7 +20,7 @@
20
['cuda/scatter.cpp', 'cuda/scatter_kernel.cu'])
21
]
22
23
-__version__ = '1.1.0'
+__version__ = '1.1.1'
24
url = 'https://github.com/rusty1s/pytorch_scatter'
25
26
install_requires = []
@@ -41,4 +41,5 @@
41
tests_require=tests_require,
42
ext_modules=ext_modules,
43
cmdclass=cmdclass,
44
- packages=find_packages(), )
+ packages=find_packages(),
45
+)
torch_scatter/__init__.py
@@ -7,7 +7,7 @@
7
from .max import scatter_max
8
from .min import scatter_min
9
10
11
12
__all__ = [
13
'scatter_add',
0 commit comments