Commit 175ded99 authored by rusty1s's avatar rusty1s
Browse files

update versions

parent c081ad0d
import datetime import datetime
import sphinx_rtd_theme import sphinx_rtd_theme
import doctest import doctest
import torch_scatter
extensions = [ extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.autodoc',
...@@ -19,8 +20,8 @@ author = 'Matthias Fey' ...@@ -19,8 +20,8 @@ author = 'Matthias Fey'
project = 'pytorch_scatter' project = 'pytorch_scatter'
copyright = '{}, {}'.format(datetime.datetime.now().year, author) copyright = '{}, {}'.format(datetime.datetime.now().year, author)
version = 'master' version = torch_scatter.__version__
release = 'master' release = torch_scatter.__version__
html_theme = 'sphinx_rtd_theme' html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
......
...@@ -20,7 +20,7 @@ if CUDA_HOME is not None: ...@@ -20,7 +20,7 @@ if CUDA_HOME is not None:
['cuda/scatter.cpp', 'cuda/scatter_kernel.cu']) ['cuda/scatter.cpp', 'cuda/scatter_kernel.cu'])
] ]
__version__ = '1.2.0' __version__ = '1.3.0'
url = 'https://github.com/rusty1s/pytorch_scatter' url = 'https://github.com/rusty1s/pytorch_scatter'
install_requires = [] install_requires = []
......
...@@ -7,7 +7,7 @@ from .std import scatter_std ...@@ -7,7 +7,7 @@ from .std import scatter_std
from .max import scatter_max from .max import scatter_max
from .min import scatter_min from .min import scatter_min
__version__ = '1.2.0' __version__ = '1.3.0'
__all__ = [ __all__ = [
'scatter_add', 'scatter_add',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment