diff --git a/.github/workflows/building.yml b/.github/workflows/building.yml index 1df6c589..d99201d9 100644 --- a/.github/workflows/building.yml +++ b/.github/workflows/building.yml @@ -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: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 997541dd..f9581c18 100644 --- a/CMakeLists.txt +++ b/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) diff --git a/conda/pytorch-scatter/meta.yaml b/conda/pytorch-scatter/meta.yaml index 9b86bb1a..cc2989a1 100644 --- a/conda/pytorch-scatter/meta.yaml +++ b/conda/pytorch-scatter/meta.yaml @@ -1,6 +1,6 @@ package: name: pytorch-scatter - version: 2.0.7 + version: 2.0.8 source: path: ../.. diff --git a/setup.py b/setup.py index a358ade3..43f1cf04 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/torch_scatter/__init__.py b/torch_scatter/__init__.py index b5742320..fc4f9592 100644 --- a/torch_scatter/__init__.py +++ b/torch_scatter/__init__.py @@ -4,7 +4,7 @@ import torch -__version__ = '2.0.7' +__version__ = '2.0.8' suffix = 'cuda' if torch.cuda.is_available() else 'cpu'