From 4e69103303e80dbe34c8cde817476d64a15c99c8 Mon Sep 17 00:00:00 2001 From: haotianteng Date: Wed, 27 Nov 2019 20:34:30 -0500 Subject: [PATCH 1/2] update tensorflow version requirement in README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 61da9a6..1dcfe36 100644 --- a/README.md +++ b/README.md @@ -57,11 +57,11 @@ pip install chiron This will install Chiron, and [`h5py`](https://github.com/h5py/h5py) (required for reading in `.fast5` files). Tensorflow need to be install in addition by: ``` -pip install tensorflow +pip install tensorflow==1.15 ``` or GPU version: ``` -pip install tensorflow-gpu +pip install tensorflow-gpu==1.15 ``` ### Install from Source @@ -75,14 +75,14 @@ python setup.py install ``` For CPU-version: ``` -pip install tensorflow +pip install tensorflow==1.15 ``` For GPU-version(Nvidia GPU required): Install [CUDA](https://developer.nvidia.com/cuda-toolkit) Install [cuDNN](https://developer.nvidia.com/cudnn) Install tensorflow gpu version ``` -pip install tensorflow-gpu +pip install tensorflow-gpu==1.15 ``` And then add the Chiron into PYTHONPATH,for convinience you can add it to the .bashrc ``` From 3b8aa2b1aa87bb0743ba24d8b409b2c01bc1450c Mon Sep 17 00:00:00 2001 From: haotianteng Date: Wed, 27 Nov 2019 20:35:15 -0500 Subject: [PATCH 2/2] update minor version number --- chiron/_version.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chiron/_version.py b/chiron/_version.py index 8104b62..22cd881 100644 --- a/chiron/_version.py +++ b/chiron/_version.py @@ -5,4 +5,4 @@ #file, You can obtain one at http://mozilla.org/MPL/2.0/. #Store the version here -__version__ = '0.6.0' +__version__ = '0.6.1' diff --git a/setup.py b/setup.py index b501098..bf935ab 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ 'packaging>=18.0' ] extras_require={ - "tf": ["tensorflow>=1.13.1"], - "tf_gpu": ["tensorflow-gpu>=1.13.1"], + "tf": ["tensorflow==1.15.0"], + "tf_gpu": ["tensorflow-gpu==1.15.0"], } exec(open('chiron/_version.py').read()) setup(