From d3e6e7dcf163dd577448055ccbad9051757b1631 Mon Sep 17 00:00:00 2001 From: Gems Guo Date: Fri, 2 Nov 2018 21:26:34 +0800 Subject: [PATCH] Fix pypi package missing python module --- README.md | 4 ++-- deployment/pypi/setup.py | 5 +++-- docs/GetStarted.md | 2 +- docs/InstallNNI_Ubuntu.md | 2 +- setup.py | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7172757280..1a166774d4 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The tool dispatches and runs trial jobs generated by tuning algorithms to search * We only support Linux (Ubuntu 16.04 or higher) in our current stage. * Run the following commands in an environment that has `python >= 3.5`, `git` and `wget`. ```bash - git clone -b v0.3.1 https://github.com/Microsoft/nni.git + git clone -b v0.3.2 https://github.com/Microsoft/nni.git cd nni source install.sh ``` @@ -41,7 +41,7 @@ The tool dispatches and runs trial jobs generated by tuning algorithms to search * The following example is an experiment built on TensorFlow. Make sure you have **TensorFlow installed** before running it. * Download the examples via clone the source code. ```bash - git clone -b v0.3.1 https://github.com/Microsoft/nni.git + git clone -b v0.3.2 https://github.com/Microsoft/nni.git ``` * Run the mnist example. ```bash diff --git a/deployment/pypi/setup.py b/deployment/pypi/setup.py index ccb99a7968..ed73a022f1 100644 --- a/deployment/pypi/setup.py +++ b/deployment/pypi/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name = 'nni', - version = '0.3.1', + version = '0.3.2', author = 'Microsoft NNI team', author_email = 'nni@microsoft.com', description = 'Neural Network Intelligence package', @@ -27,7 +27,8 @@ 'pyyaml', 'psutil', 'requests', - 'astor' + 'astor', + 'pyhdfs' ], classifiers = [ 'Programming Language :: Python :: 3', diff --git a/docs/GetStarted.md b/docs/GetStarted.md index 28ad0c532e..2736190294 100644 --- a/docs/GetStarted.md +++ b/docs/GetStarted.md @@ -18,7 +18,7 @@ * __Install NNI through source code__ - git clone -b v0.3.1 https://github.com/Microsoft/nni.git + git clone -b v0.3.2 https://github.com/Microsoft/nni.git cd nni source install.sh diff --git a/docs/InstallNNI_Ubuntu.md b/docs/InstallNNI_Ubuntu.md index dafce225fc..7d225c8726 100644 --- a/docs/InstallNNI_Ubuntu.md +++ b/docs/InstallNNI_Ubuntu.md @@ -16,7 +16,7 @@ * __Install NNI through source code__ - git clone -b v0.3.1 https://github.com/Microsoft/nni.git + git clone -b v0.3.2 https://github.com/Microsoft/nni.git cd nni source install.sh diff --git a/setup.py b/setup.py index d788a2366a..3fcdb5330a 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def run(self): setup( name = 'nni', - version = '0.3.1', + version = '0.3.2', author = 'Microsoft NNI Team', author_email = 'nni@microsoft.com', description = 'Neural Network Intelligence project',