File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) .
55
6- ## [ 0.5.0] - 2023-MM-DD
6+ ## [ 0.5.0] - 2025-10-14
77### Added
88- Added support for ` manylinux_2_28 ` wheels built with CUDA in nightly releases ([ #496 ] ( https://github.com/pyg-team/pyg-lib/pull/496 ) )
99- Added support for ` manylinux_2_28 ` wheels in nightly releases ([ #480 ] ( https://github.com/pyg-team/pyg-lib/pull/480 ) )
@@ -19,7 +19,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1919- Added macOS Apple Silicon support ([ #310 ] ( https://github.com/pyg-team/pyg-lib/pull/310 ) )
2020### Changed
2121### Removed
22- - Removed Support for Python 1.13-2.5 ([ #532 ] ( https://github.com/pyg-team/pyg-lib/pull/532 ) )
22+ - Removed Support for PyTorch 1.13-2.5 ([ #532 ] ( https://github.com/pyg-team/pyg-lib/pull/532 ) )
2323- Dropped Python 3.9 support ([ #525 ] ( https://github.com/pyg-team/pyg-lib/pull/525 ) )
2424- Dropped Python 3.8 support ([ #356 ] ( https://github.com/pyg-team/pyg-lib/pull/356 ) )
2525- Removed linking to Python ([ #462 ] ( https://github.com/pyg-team/pyg-lib/pull/462 ) )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ project(pyg)
33set (CMAKE_CXX_STANDARD 17)
44set (CMAKE_CXX_STANDARD_REQUIRED ON )
55set (CMAKE_SHARED_LIBRARY_PREFIX "lib" )
6- set (PYG_VERSION 0.4 .0)
6+ set (PYG_VERSION 0.5 .0)
77set (NO_METIS 0)
88
99option (BUILD_TEST "Enable testing" OFF )
Original file line number Diff line number Diff line change 77
88from pyg_lib .home import get_home_dir , set_home_dir
99
10- __version__ = '0.4 .0'
10+ __version__ = '0.5 .0'
1111
1212# * `libpyg.so`: The name of the shared library file.
1313# * `torch.ops.pyg`: The used namespace.
Original file line number Diff line number Diff line change 1313from setuptools import Extension , find_packages , setup
1414from setuptools .command .build_ext import build_ext
1515
16- __version__ = '0.4 .0'
16+ __version__ = '0.5 .0'
1717URL = 'https://github.com/pyg-team/pyg-lib'
1818
1919
You can’t perform that action at this time.
0 commit comments