Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Sep 16, 2021
1 parent ffaf092 commit 82a3bab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ authors:
- family-names: "Lenssen"
given-names: "Jan Eric"
date-released: 2019-05-06
version: 2.0.0
version: 2.0.1
license: MIT
url: "https://github.com/pyg-team/pytorch_geometric"
2 changes: 1 addition & 1 deletion conda/pyg/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pyg
version: 2.0.0
version: 2.0.1

source:
path: ../..
Expand Down
2 changes: 1 addition & 1 deletion conda/pytorch-geometric/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: pytorch-geometric
version: 2.0.0
version: 2.0.1

source:
path: ../..
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 setup, find_packages

__version__ = '2.0.0'
__version__ = '2.0.1'
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 @@ -38,7 +38,7 @@ def __dir__(self):
nn = LazyLoader('nn', globals(), 'torch_geometric.nn')
graphgym = LazyLoader('graphgym', globals(), 'torch_geometric.graphgym')

__version__ = '2.0.0'
__version__ = '2.0.1'

__all__ = [
'seed_everything',
Expand Down

0 comments on commit 82a3bab

Please sign in to comment.