Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
weihua916 committed Aug 20, 2022
1 parent b32cadc commit 3252166
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ OGB is an on-going effort, and we are planning to increase our coverage in the f

## Installation
You can install OGB using Python's package manager `pip`.
**If you have previously installed ogb, please make sure you update the version to 1.3.3.**
The release note is available [here](https://github.com/snap-stanford/ogb/releases/tag/1.3.3).
**If you have previously installed ogb, please make sure you update the version to 1.3.4.**
The release note is available [here](https://github.com/snap-stanford/ogb/releases/tag/1.3.4).

#### Requirements
- Python>=3.6
Expand All @@ -53,7 +53,7 @@ pip install ogb

```bash
python -c "import ogb; print(ogb.__version__)"
# This should print "1.3.3". Otherwise, please update the version by
# This should print "1.3.4". Otherwise, please update the version by
pip install -U ogb
```

Expand Down
2 changes: 1 addition & 1 deletion examples/linkproppred/vessel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is an external contribution to OGB, please refer to the **[NeuRIPS paper](h

## Installation requirements
```
ogb>=1.3.3
ogb>=1.3.4
torch>=1.7.0
torch-geometric==master (pip install git+https://github.com/rusty1s/pytorch_geometric.git)
```
Expand Down
2 changes: 1 addition & 1 deletion ogb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging
from threading import Thread

__version__ = '1.3.3'
__version__ = '1.3.4'

try:
os.environ['OUTDATED_IGNORE'] = '1'
Expand Down

0 comments on commit 3252166

Please sign in to comment.