Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit a2364b8

Browse files
author
Adam Rogowiec
authored
Upgrade version to 0.10.0-rc.6 (#263)
* Update installation documentation * Upgrade version to 10rc6 and update package dependencies with ngraph-core.
1 parent 5027294 commit a2364b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

BUILDING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Prepare System:
3636
# apt install python3 python3-pip python3-dev
3737
# apt install build-essential cmake curl clang-3.9 git zlib1g zlib1g-dev libtinfo-dev
3838

39-
Clone nGraph's `v0.10.0-rc.5` tag, build and install it into `$HOME/ngraph_dist`:
39+
Clone nGraph's `v0.10.0-rc.6` tag, build and install it into `$HOME/ngraph_dist`:
4040

41-
$ git clone -b 'v0.10.0-rc.5' --single-branch --depth 1 https://github.com/NervanaSystems/ngraph.git
41+
$ git clone -b 'v0.10.0-rc.6' --single-branch --depth 1 https://github.com/NervanaSystems/ngraph.git
4242
$ mkdir ngraph/build
4343
$ cd ngraph/build
4444
$ cmake ../ -DNGRAPH_USE_PREBUILT_LLVM=TRUE -DCMAKE_INSTALL_PREFIX=$HOME/ngraph_dist
@@ -78,5 +78,5 @@ If you don't see any errors, nGraph should be installed correctly.
7878

7979
You can install ngraph-onnx using pip:
8080

81-
(your_venv) $ pip install git+https://github.com/NervanaSystems/ngraph-onnx/@v0.10.0-rc.5
81+
(your_venv) $ pip install git+https://github.com/NervanaSystems/ngraph-onnx/@v0.10.0-rc.6
8282

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
from setuptools import find_packages
66

77
setup(name='ngraph-onnx',
8-
version='0.10.0-rc.5',
8+
version='0.10.0-rc.6',
99
description='ONNX support for ngraph',
1010
author='Intel',
1111
author_email='intelnervana@intel.com',
1212
url='http://www.intelnervana.com',
1313
license='License :: OSI Approved :: Apache Software License',
1414
packages=find_packages(exclude=['tests', 'tests.*', 'tests_core', 'tests_core.*']),
1515
data_files=[('', ['LICENSE']), ('licenses', glob('licenses/*'))],
16-
install_requires=['cachetools', 'numpy', 'onnx', 'setuptools'])
16+
install_requires=['cachetools', 'ngraph-core', 'numpy', 'onnx', 'setuptools'])

0 commit comments

Comments
 (0)