Skip to content

Commit 360c26f

Browse files
committed
version up
1 parent ae31f72 commit 360c26f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ install:
5858
- conda install pytorch=${TORCH_VERSION} ${TOOLKIT} -c pytorch --yes
5959
- source script/torch.sh
6060
- pip install flake8 codecov
61-
- python setup.py install
61+
- pip install .[test]
6262
script:
6363
- flake8 .
6464
- python setup.py test

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.0)
22
project(torchscatter)
33
set(CMAKE_CXX_STANDARD 14)
4-
set(TORCHSCATTER_VERSION 2.0.4)
4+
set(TORCHSCATTER_VERSION 2.0.5)
55

66
option(WITH_CUDA "Enable CUDA support" OFF)
77

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_extensions():
6363

6464
setup(
6565
name='torch_scatter',
66-
version='2.0.4',
66+
version='2.0.5',
6767
author='Matthias Fey',
6868
author_email='[email protected]',
6969
url='https://github.com/rusty1s/pytorch_scatter',
@@ -74,6 +74,7 @@ def get_extensions():
7474
install_requires=install_requires,
7575
setup_requires=setup_requires,
7676
tests_require=tests_require,
77+
extras_require={'test': tests_require},
7778
ext_modules=get_extensions() if not BUILD_DOCS else [],
7879
cmdclass={
7980
'build_ext':

torch_scatter/__init__.py

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

55
import torch
66

7-
__version__ = '2.0.4'
7+
__version__ = '2.0.5'
88

99
try:
1010
for library in ['_version', '_scatter', '_segment_csr', '_segment_coo']:

0 commit comments

Comments
 (0)