From 2bc2895f8b506a7cdc3edcfaa10cee496e5d2fbb Mon Sep 17 00:00:00 2001 From: UENISHI Kota Date: Tue, 23 Oct 2018 13:20:18 +0900 Subject: [PATCH] Bump version and not allow Chainer 5.x (#296) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a11c1a06..c9bfedf4 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ install_requires = [ - 'chainer >=3.5.0, !=4.0.0b2, != 4.0.0b1, != 4.0.0a1', + 'chainer >=3.5.0, <5.0', 'mpi4py', ] @@ -15,7 +15,7 @@ setup( name='chainermn', - version='1.3.0', + version='1.3.1', description='ChainerMN: Multi-node distributed training with Chainer', author='Takuya Akiba', author_email='akiba@preferred.jp',