Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jul 28, 2021
1 parent f15dde8 commit 6e7b4ca
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/building.yml
Expand Up @@ -33,10 +33,6 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Update pip
run: |
pip install --upgrade pip
- name: Install CUDA ${{ matrix.cuda-version }}
if: ${{ matrix.cuda-version != 'cpu' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.0)
project(torchscatter)
set(CMAKE_CXX_STANDARD 14)
set(TORCHSCATTER_VERSION 2.0.7)
set(TORCHSCATTER_VERSION 2.0.8)

option(WITH_CUDA "Enable CUDA support" OFF)

Expand Down
2 changes: 1 addition & 1 deletion conda/pytorch-scatter/meta.yaml
@@ -1,6 +1,6 @@
package:
name: pytorch-scatter
version: 2.0.7
version: 2.0.8

source:
path: ../..
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -82,7 +82,7 @@ def get_extensions():

setup(
name='torch_scatter',
version='2.0.7',
version='2.0.8',
author='Matthias Fey',
author_email='matthias.fey@tu-dortmund.de',
url='https://github.com/rusty1s/pytorch_scatter',
Expand Down
2 changes: 1 addition & 1 deletion torch_scatter/__init__.py
Expand Up @@ -4,7 +4,7 @@

import torch

__version__ = '2.0.7'
__version__ = '2.0.8'

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

Expand Down

0 comments on commit 6e7b4ca

Please sign in to comment.