Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Update version number since v0.3.4 has been released #342

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Note: If you are in docker container (as root), please remove `--user` from the
* 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.3 https://github.com/Microsoft/nni.git
git clone -b v0.3.4 https://github.com/Microsoft/nni.git
cd nni
source install.sh
```
Expand All @@ -47,7 +47,7 @@ Note: If you are in docker container (as root), please remove `--user` from the
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.3 https://github.com/Microsoft/nni.git
git clone -b v0.3.4 https://github.com/Microsoft/nni.git
```
* Run the mnist example.
```bash
Expand Down
2 changes: 1 addition & 1 deletion deployment/pypi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name = 'nni',
version = '0.3.3',
version = '0.3.4',
author = 'Microsoft NNI team',
author_email = 'nni@microsoft.com',
description = 'Neural Network Intelligence package',
Expand Down
2 changes: 1 addition & 1 deletion docs/GetStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

* __Install NNI through source code__

git clone -b v0.3.3 https://github.com/Microsoft/nni.git
git clone -b v0.3.4 https://github.com/Microsoft/nni.git
cd nni
source install.sh

Expand Down
2 changes: 1 addition & 1 deletion docs/InstallNNI_Ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

* __Install NNI through source code__

git clone -b v0.3.3 https://github.com/Microsoft/nni.git
git clone -b v0.3.4 https://github.com/Microsoft/nni.git
cd nni
source install.sh

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(self):

setup(
name = 'nni',
version = '0.3.3',
version = '0.3.4',
author = 'Microsoft NNI Team',
author_email = 'nni@microsoft.com',
description = 'Neural Network Intelligence project',
Expand Down
2 changes: 1 addition & 1 deletion tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name = 'nnictl',
version = '0.3.2',
version = '0.3.4',
packages = setuptools.find_packages(exclude=['*test*']),

python_requires = '>=3.5',
Expand Down