Commit 7f6379aa authored by rusty1s's avatar rusty1s
Browse files

version up

parent 03f2caa9
cmake_minimum_required(VERSION 3.0) cmake_minimum_required(VERSION 3.0)
project(torchsparse) project(torchsparse)
set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD 14)
set(TORCHSPARSE_VERSION 0.6.14) set(TORCHSPARSE_VERSION 0.6.15)
option(WITH_CUDA "Enable CUDA support" OFF) option(WITH_CUDA "Enable CUDA support" OFF)
option(WITH_PYTHON "Link to Python when building" ON) option(WITH_PYTHON "Link to Python when building" ON)
......
package: package:
name: pytorch-sparse name: pytorch-sparse
version: 0.6.14 version: 0.6.15
source: source:
path: ../.. path: ../..
......
...@@ -15,7 +15,7 @@ from torch.utils.cpp_extension import ( ...@@ -15,7 +15,7 @@ from torch.utils.cpp_extension import (
CUDAExtension, CUDAExtension,
) )
__version__ = '0.6.14' __version__ = '0.6.15'
URL = 'https://github.com/rusty1s/pytorch_sparse' URL = 'https://github.com/rusty1s/pytorch_sparse'
WITH_CUDA = torch.cuda.is_available() and CUDA_HOME is not None WITH_CUDA = torch.cuda.is_available() and CUDA_HOME is not None
......
...@@ -3,7 +3,7 @@ import os.path as osp ...@@ -3,7 +3,7 @@ import os.path as osp
import torch import torch
__version__ = '0.6.14' __version__ = '0.6.15'
for library in [ for library in [
'_version', '_convert', '_diag', '_spmm', '_spspmm', '_metis', '_rw', '_version', '_convert', '_diag', '_spmm', '_spspmm', '_metis', '_rw',
......
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