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
175ded99
Commit
175ded99
authored
Jun 29, 2019
by
rusty1s
Browse files
update versions
parent
c081ad0d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
docs/source/conf.py
docs/source/conf.py
+3
-2
setup.py
setup.py
+1
-1
torch_scatter/__init__.py
torch_scatter/__init__.py
+1
-1
No files found.
docs/source/conf.py
View file @
175ded99
import
datetime
import
sphinx_rtd_theme
import
doctest
import
torch_scatter
extensions
=
[
'sphinx.ext.autodoc'
,
...
...
@@ -19,8 +20,8 @@ author = 'Matthias Fey'
project
=
'pytorch_scatter'
copyright
=
'{}, {}'
.
format
(
datetime
.
datetime
.
now
().
year
,
author
)
version
=
'master'
release
=
'master'
version
=
torch_scatter
.
__version__
release
=
torch_scatter
.
__version__
html_theme
=
'sphinx_rtd_theme'
html_theme_path
=
[
sphinx_rtd_theme
.
get_html_theme_path
()]
...
...
setup.py
View file @
175ded99
...
...
@@ -20,7 +20,7 @@ if CUDA_HOME is not None:
[
'cuda/scatter.cpp'
,
'cuda/scatter_kernel.cu'
])
]
__version__
=
'1.
2
.0'
__version__
=
'1.
3
.0'
url
=
'https://github.com/rusty1s/pytorch_scatter'
install_requires
=
[]
...
...
torch_scatter/__init__.py
View file @
175ded99
...
...
@@ -7,7 +7,7 @@ from .std import scatter_std
from
.max
import
scatter_max
from
.min
import
scatter_min
__version__
=
'1.
2
.0'
__version__
=
'1.
3
.0'
__all__
=
[
'scatter_add'
,
...
...
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