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

Commit

Permalink
Upgrade version to 0.10.0-rc.6 (#263)
Browse files Browse the repository at this point in the history
* Update installation documentation

* Upgrade version to 10rc6 and update package dependencies with ngraph-core.
  • Loading branch information
Adam Rogowiec committed Nov 30, 2018
1 parent 5027294 commit a2364b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Prepare System:
# apt install python3 python3-pip python3-dev
# apt install build-essential cmake curl clang-3.9 git zlib1g zlib1g-dev libtinfo-dev

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

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

You can install ngraph-onnx using pip:

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

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
from setuptools import find_packages

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

0 comments on commit a2364b8

Please sign in to comment.