Skip to content

Commit 587d1d0

Browse files
authored
Version up (#246)
* PyTorch 1.12 support * version up
1 parent 897c0a8 commit 587d1d0

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.0)
22
project(torchsparse)
33
set(CMAKE_CXX_STANDARD 14)
4-
set(TORCHSPARSE_VERSION 0.7.0)
4+
set(TORCHSPARSE_VERSION 0.6.14)
55

66
option(WITH_CUDA "Enable CUDA support" OFF)
77
option(WITH_PYTHON "Link to Python when building" ON)

conda/pytorch-sparse/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pytorch-sparse
3-
version: 0.7.0
3+
version: 0.6.14
44

55
source:
66
path: ../..

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@
88
import torch
99
from setuptools import find_packages, setup
1010
from torch.__config__ import parallel_info
11-
from torch.utils.cpp_extension import (CUDA_HOME, BuildExtension, CppExtension,
12-
CUDAExtension)
11+
from torch.utils.cpp_extension import (
12+
CUDA_HOME,
13+
BuildExtension,
14+
CppExtension,
15+
CUDAExtension,
16+
)
1317

14-
__version__ = '0.7.0'
18+
__version__ = '0.6.14'
1519
URL = 'https://github.com/rusty1s/pytorch_sparse'
1620

1721
WITH_CUDA = torch.cuda.is_available() and CUDA_HOME is not None

torch_sparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import torch
55

6-
__version__ = '0.7.0'
6+
__version__ = '0.6.14'
77

88
for library in [
99
'_version', '_convert', '_diag', '_spmm', '_spspmm', '_metis', '_rw',

0 commit comments

Comments
 (0)