Skip to content

Commit

Permalink
Version up (#246)
Browse files Browse the repository at this point in the history
* PyTorch 1.12 support

* version up
  • Loading branch information
rusty1s committed Jun 30, 2022
1 parent 897c0a8 commit 587d1d0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.0)
project(torchsparse)
set(CMAKE_CXX_STANDARD 14)
set(TORCHSPARSE_VERSION 0.7.0)
set(TORCHSPARSE_VERSION 0.6.14)

option(WITH_CUDA "Enable CUDA support" OFF)
option(WITH_PYTHON "Link to Python when building" ON)
Expand Down
2 changes: 1 addition & 1 deletion conda/pytorch-sparse/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pytorch-sparse
version: 0.7.0
version: 0.6.14

source:
path: ../..
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@
import torch
from setuptools import find_packages, setup
from torch.__config__ import parallel_info
from torch.utils.cpp_extension import (CUDA_HOME, BuildExtension, CppExtension,
CUDAExtension)
from torch.utils.cpp_extension import (
CUDA_HOME,
BuildExtension,
CppExtension,
CUDAExtension,
)

__version__ = '0.7.0'
__version__ = '0.6.14'
URL = 'https://github.com/rusty1s/pytorch_sparse'

WITH_CUDA = torch.cuda.is_available() and CUDA_HOME is not None
Expand Down
2 changes: 1 addition & 1 deletion torch_sparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import torch

__version__ = '0.7.0'
__version__ = '0.6.14'

for library in [
'_version', '_convert', '_diag', '_spmm', '_spspmm', '_metis', '_rw',
Expand Down

0 comments on commit 587d1d0

Please sign in to comment.