Skip to content

Commit ca4e5f8

Browse files
authored
Increase PyG to version 2.2.0 (#6105)
1 parent 6259c18 commit ca4e5f8

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6-
## [2.2.0] - 2022-MM-DD
6+
## [2.3.0] - 2023-MM-DD
7+
### Added
8+
### Changed
9+
### Removed
10+
11+
## [2.2.0] - 2022-12-01
712
### Added
813
- Extended `GNNExplainer` to support edge level explanations ([#6056](https://github.com/pyg-team/pytorch_geometric/pull/6056))
914
- Added CPU affinitization for `NodeLoader` ([#6005](https://github.com/pyg-team/pytorch_geometric/pull/6005))

conda/pyg/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: pyg
3-
version: 2.1.0
3+
version: 2.2.0
44

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

88
requirements:
99
host:

conda/pytorch-geometric/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: pytorch-geometric
3-
version: 2.1.0
3+
version: 2.2.0
44

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

88
requirements:
99
host:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

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

66
install_requires = [

torch_geometric/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __dir__(self):
4242
nn = LazyLoader('nn', globals(), 'torch_geometric.nn')
4343
graphgym = LazyLoader('graphgym', globals(), 'torch_geometric.graphgym')
4444

45-
__version__ = '2.1.0'
45+
__version__ = '2.2.0'
4646

4747
__all__ = [
4848
'seed_everything',

0 commit comments

Comments
 (0)