Skip to content

Commit 6e7b4ca

Browse files
committed
version up
1 parent f15dde8 commit 6e7b4ca

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

.github/workflows/building.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ jobs:
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535

36-
- name: Update pip
37-
run: |
38-
pip install --upgrade pip
39-
4036
- name: Install CUDA ${{ matrix.cuda-version }}
4137
if: ${{ matrix.cuda-version != 'cpu' }}
4238
run: |

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(torchscatter)
33
set(CMAKE_CXX_STANDARD 14)
4-
set(TORCHSCATTER_VERSION 2.0.7)
4+
set(TORCHSCATTER_VERSION 2.0.8)
55

66
option(WITH_CUDA "Enable CUDA support" OFF)
77

conda/pytorch-scatter/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-scatter
3-
version: 2.0.7
3+
version: 2.0.8
44

55
source:
66
path: ../..

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def get_extensions():
8282

8383
setup(
8484
name='torch_scatter',
85-
version='2.0.7',
85+
version='2.0.8',
8686
author='Matthias Fey',
8787
author_email='[email protected]',
8888
url='https://github.com/rusty1s/pytorch_scatter',

torch_scatter/__init__.py

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

55
import torch
66

7-
__version__ = '2.0.7'
7+
__version__ = '2.0.8'
88

99
suffix = 'cuda' if torch.cuda.is_available() else 'cpu'
1010

0 commit comments

Comments
 (0)