Skip to content

Commit b1072a5

Browse files
committed
version up
1 parent 1d135a2 commit b1072a5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
['cuda/scatter.cpp', 'cuda/scatter_kernel.cu'])
2121
]
2222

23-
__version__ = '1.1.0'
23+
__version__ = '1.1.1'
2424
url = 'https://github.com/rusty1s/pytorch_scatter'
2525

2626
install_requires = []
@@ -41,4 +41,5 @@
4141
tests_require=tests_require,
4242
ext_modules=ext_modules,
4343
cmdclass=cmdclass,
44-
packages=find_packages(), )
44+
packages=find_packages(),
45+
)

torch_scatter/__init__.py

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

10-
__version__ = '1.1.0'
10+
__version__ = '1.1.1'
1111

1212
__all__ = [
1313
'scatter_add',

0 commit comments

Comments
 (0)