Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Nov 9, 2023
1 parent ea9fc91 commit 5e7e8f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.12)
project(pyg)
set(CMAKE_CXX_STANDARD 17)
set(PYG_VERSION 0.3.0)
set(PYG_VERSION 0.3.1)

option(BUILD_TEST "Enable testing" OFF)
option(BUILD_BENCHMARK "Enable benchmarks" OFF)
Expand Down
2 changes: 1 addition & 1 deletion pyg_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .home import get_home_dir, set_home_dir

__version__ = '0.3.0'
__version__ = '0.3.1'

# * `libpyg.so`: The name of the shared library file.
# * `torch.ops.pyg`: The used namespace.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext

__version__ = '0.3.0'
__version__ = '0.3.1'
URL = 'https://github.com/pyg-team/pyg-lib'


Expand Down

0 comments on commit 5e7e8f3

Please sign in to comment.