From 29440586c97d212168e58575080c0548a36c0308 Mon Sep 17 00:00:00 2001 From: rusty1s Date: Wed, 11 Oct 2023 12:26:20 +0000 Subject: [PATCH] update --- CMakeLists.txt | 2 +- conda/pytorch-cluster/meta.yaml | 2 +- setup.py | 2 +- torch_cluster/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2edd49b..baea7a1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0) project(torchcluster) set(CMAKE_CXX_STANDARD 14) -set(TORCHCLUSTER_VERSION 1.6.2) +set(TORCHCLUSTER_VERSION 1.6.3) option(WITH_CUDA "Enable CUDA support" OFF) option(WITH_PYTHON "Link to Python when building" ON) diff --git a/conda/pytorch-cluster/meta.yaml b/conda/pytorch-cluster/meta.yaml index dfb2bdb..8e106b0 100644 --- a/conda/pytorch-cluster/meta.yaml +++ b/conda/pytorch-cluster/meta.yaml @@ -1,6 +1,6 @@ package: name: pytorch-cluster - version: 1.6.2 + version: 1.6.3 source: path: ../.. diff --git a/setup.py b/setup.py index 4bc1a8c..cd7de3c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from torch.utils.cpp_extension import (CUDA_HOME, BuildExtension, CppExtension, CUDAExtension) -__version__ = '1.6.2' +__version__ = '1.6.3' URL = 'https://github.com/rusty1s/pytorch_cluster' WITH_CUDA = False diff --git a/torch_cluster/__init__.py b/torch_cluster/__init__.py index 30aea66..39d1d67 100644 --- a/torch_cluster/__init__.py +++ b/torch_cluster/__init__.py @@ -3,7 +3,7 @@ import torch -__version__ = '1.6.2' +__version__ = '1.6.3' for library in [ '_version', '_grid', '_graclus', '_fps', '_rw', '_sampler', '_nearest',