Commit 360c26f9 authored by rusty1s's avatar rusty1s
Browse files

version up

parent ae31f726
......@@ -58,7 +58,7 @@ install:
- conda install pytorch=${TORCH_VERSION} ${TOOLKIT} -c pytorch --yes
- source script/torch.sh
- pip install flake8 codecov
- python setup.py install
- pip install .[test]
script:
- flake8 .
- python setup.py test
......
cmake_minimum_required(VERSION 3.0)
project(torchscatter)
set(CMAKE_CXX_STANDARD 14)
set(TORCHSCATTER_VERSION 2.0.4)
set(TORCHSCATTER_VERSION 2.0.5)
option(WITH_CUDA "Enable CUDA support" OFF)
......
......@@ -63,7 +63,7 @@ tests_require = ['pytest', 'pytest-cov']
setup(
name='torch_scatter',
version='2.0.4',
version='2.0.5',
author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de',
url='https://github.com/rusty1s/pytorch_scatter',
......@@ -74,6 +74,7 @@ setup(
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
ext_modules=get_extensions() if not BUILD_DOCS else [],
cmdclass={
'build_ext':
......
......@@ -4,7 +4,7 @@ import os.path as osp
import torch
__version__ = '2.0.4'
__version__ = '2.0.5'
try:
for library in ['_version', '_scatter', '_segment_csr', '_segment_coo']:
......
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