Skip to content

Commit 56e83de

Browse files
authored
Merge pull request #411 from corochann/v0.7.0
update version to 0.7.0
2 parents ff990f7 + 45caa6b commit 56e83de

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ python:
77
- 3.6
88
env:
99
env:
10-
- CHAINER_VERSION="chainer<7"
10+
- CHAINER_VERSION="chainer==7.0.0"
1111
- CHAINER_VERSION="chainer"
1212
- CHAINER_VERSION="prerelease"
1313

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ currently supported:
4545
| v0.4.0 | v3.0 ~ v4.0 *1 | 2017.09.3.0 | 2.7, 3.5, 3.6 |
4646
| v0.5.0 | v3.0 ~ v5.0 *2 | 2017.09.3.0 | 2.7, 3.5, 3.6 |
4747
| v0.6.0 | v6.0 ~ *3 | 2017.09.3.0 | 2.7, 3.5, 3.6 |
48-
| master branch | v6.0 ~ *3 | 2019.03.2.0 | 3.6, 3.7 |
49-
| v0.7.0 release plan | v7.0 ~ | 2019.03.2.0 | 3.6, 3.7 *4 |
48+
| v0.7.0 | v7.0 ~ | 2019.03.2.0 | 3.6, 3.7 *4 |
49+
| master branch *5 | v7.0 ~ | 2019.03.2.0 | 3.6, 3.7 |
5050

5151

5252
[Footnote]
@@ -57,10 +57,13 @@ which is introduced after chainer v3. See [this issue](https://github.com/pfnet-
5757
*2: Saliency modules only work after chainer v5.
5858

5959
*3: Chainer v6 is released and [ChainerX](https://chainer.org/announcement/2018/12/03/chainerx.html) is newly introduced.
60-
In order to support this new feature & API, we are going to break backward compatibility for chainer chemistry v0.6.0 release.
60+
In order to support this new feature & API, we broke backward compatibility for chainer chemistry v0.6.0 release.
6161
See [ChainerX Documentation](https://chainer.org/announcement/2018/12/03/chainerx.html) for details.
6262

63-
*4: We are going to drop python 2.x support in the near future.
63+
*4: python 2.x support is dropped, following the same policy with `chainer` and `rdkit`.
64+
65+
*5: As [announced in chainer blog](https://chainer.org/announcement/2019/12/05/released-v7.html),
66+
further development will be limited to only serious bug-fixes and maintenance.
6467

6568
## Installation
6669

@@ -145,6 +148,8 @@ pull request and add the name of your project to this list:
145148

146149
- BayesGrad: Explaining Predictions of Graph Convolutional Networks ([paper](https://arxiv.org/abs/1807.01985), [code](https://github.com/pfnet-research/bayesgrad))
147150
- Graph Warp Module: an Auxiliary Module for Boosting the Power of Graph Neural Networks ([paper](https://arxiv.org/abs/1902.01020), [code](https://github.com/k-ishiguro/chainer-chemistry/tree/gwm_for_CC))
151+
- GraphNVP: An Invertible Flow Model for Generating Molecular Graphs ([paper](https://arxiv.org/abs/1905.11600), [code](https://github.com/pfnet-research/graph-nvp))
152+
- Graph Residual Flow for Molecular Graph Generation ([paper](https://arxiv.org/abs/1909.13521))
148153

149154
## Useful Links
150155

chainer_chemistry/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6.0'
1+
__version__ = '0.7.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup_requires = []
77
install_requires = [
8-
'chainer >=6.0.0',
8+
'chainer >=7.0.0',
99
'joblib',
1010
'matplotlib',
1111
'pandas',

0 commit comments

Comments
 (0)