Skip to content

Commit

Permalink
Increase PyG to version 2.2.0 (#6105)
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Dec 1, 2022
1 parent 6259c18 commit ca4e5f8
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [2.2.0] - 2022-MM-DD
## [2.3.0] - 2023-MM-DD
### Added
### Changed
### Removed

## [2.2.0] - 2022-12-01
### Added
- Extended `GNNExplainer` to support edge level explanations ([#6056](https://github.com/pyg-team/pytorch_geometric/pull/6056))
- Added CPU affinitization for `NodeLoader` ([#6005](https://github.com/pyg-team/pytorch_geometric/pull/6005))
Expand Down
4 changes: 2 additions & 2 deletions conda/pyg/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: pyg
version: 2.1.0
version: 2.2.0

source:
url: https://files.pythonhosted.org/packages/bd/e3/3913bc65cb23db1dcc5a69a87f53206ebcdfebc28973535a4a64a0cb97cd/torch_geometric-2.1.0.post1.tar.gz
url: https://files.pythonhosted.org/packages/bd/e3/3913bc65cb23db1dcc5a69a87f53206ebcdfebc28973535a4a64a0cb97cd/torch_geometric-2.2.0.tar.gz

requirements:
host:
Expand Down
4 changes: 2 additions & 2 deletions conda/pytorch-geometric/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: pytorch-geometric
version: 2.1.0
version: 2.2.0

source:
url: https://files.pythonhosted.org/packages/bd/e3/3913bc65cb23db1dcc5a69a87f53206ebcdfebc28973535a4a64a0cb97cd/torch_geometric-2.1.0.post1.tar.gz
url: https://files.pythonhosted.org/packages/bd/e3/3913bc65cb23db1dcc5a69a87f53206ebcdfebc28973535a4a64a0cb97cd/torch_geometric-2.2.0.tar.gz

requirements:
host:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

__version__ = '2.1.0'
__version__ = '2.2.0'
URL = 'https://github.com/pyg-team/pytorch_geometric'

install_requires = [
Expand Down
2 changes: 1 addition & 1 deletion torch_geometric/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __dir__(self):
nn = LazyLoader('nn', globals(), 'torch_geometric.nn')
graphgym = LazyLoader('graphgym', globals(), 'torch_geometric.graphgym')

__version__ = '2.1.0'
__version__ = '2.2.0'

__all__ = [
'seed_everything',
Expand Down

0 comments on commit ca4e5f8

Please sign in to comment.