Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-scatter
Commits
360c26f9
Commit
360c26f9
authored
Jun 24, 2020
by
rusty1s
Browse files
version up
parent
ae31f726
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
.travis.yml
.travis.yml
+1
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
setup.py
setup.py
+2
-1
torch_scatter/__init__.py
torch_scatter/__init__.py
+1
-1
No files found.
.travis.yml
View file @
360c26f9
...
@@ -58,7 +58,7 @@ install:
...
@@ -58,7 +58,7 @@ install:
-
conda install pytorch=${TORCH_VERSION} ${TOOLKIT} -c pytorch --yes
-
conda install pytorch=${TORCH_VERSION} ${TOOLKIT} -c pytorch --yes
-
source script/torch.sh
-
source script/torch.sh
-
pip install flake8 codecov
-
pip install flake8 codecov
-
p
ython setup.py install
-
p
ip install .[test]
script
:
script
:
-
flake8 .
-
flake8 .
-
python setup.py test
-
python setup.py test
...
...
CMakeLists.txt
View file @
360c26f9
cmake_minimum_required
(
VERSION 3.0
)
cmake_minimum_required
(
VERSION 3.0
)
project
(
torchscatter
)
project
(
torchscatter
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
TORCHSCATTER_VERSION 2.0.
4
)
set
(
TORCHSCATTER_VERSION 2.0.
5
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
option
(
WITH_CUDA
"Enable CUDA support"
OFF
)
...
...
setup.py
View file @
360c26f9
...
@@ -63,7 +63,7 @@ tests_require = ['pytest', 'pytest-cov']
...
@@ -63,7 +63,7 @@ tests_require = ['pytest', 'pytest-cov']
setup
(
setup
(
name
=
'torch_scatter'
,
name
=
'torch_scatter'
,
version
=
'2.0.
4
'
,
version
=
'2.0.
5
'
,
author
=
'Matthias Fey'
,
author
=
'Matthias Fey'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
url
=
'https://github.com/rusty1s/pytorch_scatter'
,
url
=
'https://github.com/rusty1s/pytorch_scatter'
,
...
@@ -74,6 +74,7 @@ setup(
...
@@ -74,6 +74,7 @@ setup(
install_requires
=
install_requires
,
install_requires
=
install_requires
,
setup_requires
=
setup_requires
,
setup_requires
=
setup_requires
,
tests_require
=
tests_require
,
tests_require
=
tests_require
,
extras_require
=
{
'test'
:
tests_require
},
ext_modules
=
get_extensions
()
if
not
BUILD_DOCS
else
[],
ext_modules
=
get_extensions
()
if
not
BUILD_DOCS
else
[],
cmdclass
=
{
cmdclass
=
{
'build_ext'
:
'build_ext'
:
...
...
torch_scatter/__init__.py
View file @
360c26f9
...
@@ -4,7 +4,7 @@ import os.path as osp
...
@@ -4,7 +4,7 @@ import os.path as osp
import
torch
import
torch
__version__
=
'2.0.
4
'
__version__
=
'2.0.
5
'
try
:
try
:
for
library
in
[
'_version'
,
'_scatter'
,
'_segment_csr'
,
'_segment_coo'
]:
for
library
in
[
'_version'
,
'_scatter'
,
'_segment_csr'
,
'_segment_coo'
]:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment