From 1afb5b1270b11e2aa48c032c2b5ed2cb98d1f2c1 Mon Sep 17 00:00:00 2001 From: Suryaprakash Shanmugam Date: Thu, 21 Oct 2021 10:09:30 +0530 Subject: [PATCH] Update OVTF version string --- README.md | 2 +- README_cn.md | 2 +- build_ovtf.py | 14 +++++++++----- docs/BUILD.md | 4 ++-- docs/BUILD_cn.md | 4 ++-- docs/INSTALL.md | 12 ++++++------ docs/INSTALL_cn.md | 12 ++++++------ docs/cloud_instructions/AWS_instructions.md | 2 +- docs/cloud_instructions/AWS_instructions_cn.md | 2 +- docs/cloud_instructions/Azure_instructions.md | 2 +- docs/cloud_instructions/Azure_instructions_cn.md | 2 +- docs/site/main.js | 8 ++++---- openvino_tensorflow/version.cc | 2 +- python/README.md | 2 +- python/setup.in.py | 2 +- 15 files changed, 38 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 1e222c7cb..859eaa644 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ To see if **OpenVINO™ integration with TensorFlow** is properly installed, run This should produce an output like: TensorFlow version: 2.5.1 - OpenVINO integration with TensorFlow version: b'1.0.0' + OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/README_cn.md b/README_cn.md index 9f424d598..eb01ef902 100644 --- a/README_cn.md +++ b/README_cn.md @@ -53,7 +53,7 @@ 它会生成以下输出: TensorFlow version: 2.5.1 - OpenVINO integration with TensorFlow version: b'1.0.0' + OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/build_ovtf.py b/build_ovtf.py index cf135f571..35982978c 100644 --- a/build_ovtf.py +++ b/build_ovtf.py @@ -52,7 +52,7 @@ def main(): # Component versions tf_version = "v2.5.1" - ovtf_version = "v1.0.0" + ovtf_version = "v1.0.1" use_intel_tf = False # Command line parser options @@ -342,19 +342,23 @@ def main(): if tags.interpreter == "cp36": command_executor([ "pip", "install", "--force-reinstall", - "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl" + "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl" ]) if tags.interpreter == "cp37": command_executor([ "pip", "install", "--force-reinstall", - "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl" + "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl" ]) if tags.interpreter == "cp38": command_executor([ "pip", "install", "--force-reinstall", - "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl" + "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl" + ]) + if tags.interpreter == "cp39": + command_executor([ + "pip", "install", "--force-reinstall", + "https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp39-cp39-manylinux2010_x86_64.whl" ]) - # ABI 1 TF required latest numpy command_executor( ["pip", "install", "--force-reinstall", "-U numpy"]) diff --git a/docs/BUILD.md b/docs/BUILD.md index a24ba9f56..bcdba90f8 100644 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -174,7 +174,7 @@ Verify that `openvino-tensorflow` is installed correctly: This should produce an output like: TensorFlow version: 2.5.1 - OpenVINO integration with TensorFlow version: b'1.0.0' + OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 1 @@ -219,5 +219,5 @@ To build wheel files compatible with manylinux2014, use the following commands. ```bash cd tools/builds/ -docker build --no-cache -t openvino_tensorflow/pip --build-arg OVTF_BRANCH=releases/v1.0.0 . -f Dockerfile.manylinux2014 +docker build --no-cache -t openvino_tensorflow/pip --build-arg OVTF_BRANCH=releases/v1.0.1 . -f Dockerfile.manylinux2014 ``` diff --git a/docs/BUILD_cn.md b/docs/BUILD_cn.md index 07d4063b0..7cbc83d3e 100644 --- a/docs/BUILD_cn.md +++ b/docs/BUILD_cn.md @@ -174,7 +174,7 @@ $ git submodule update --recursive 它会生成以下输出: TensorFlow version: 2.5.1 - OpenVINO integration with TensorFlow version: b'1.0.0' + OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 1 @@ -219,5 +219,5 @@ TensorFlow 可以使用 `build_tf.py` 从源代码构建。 可以在 ${PATH_TO_ ```bash cd tools/builds/ -docker build --no-cache -t openvino_tensorflow/pip --build-arg OVTF_BRANCH=releases/v1.0.0 . -f Dockerfile.manylinux2014 +docker build --no-cache -t openvino_tensorflow/pip --build-arg OVTF_BRANCH=releases/v1.0.1 . -f Dockerfile.manylinux2014 ``` \ No newline at end of file diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 460238602..ad8a2efb1 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -43,15 +43,15 @@ Since TensorFlow packages available in [PyPi](https://pypi.org) are built with C 2. Install `TensorFlow` based on your Python version. You can build [TensorFlow from source](https://github.com/openvinotoolkit/openvino_tensorflow/blob/master/docs/BUILD.md#tensorflow) with -D_GLIBCXX_USE_CXX11_ABI=1 or follow the insructions below to use the appropriate package: - pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl + pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl or - pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl + pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl or - pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl + pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl 3. Download & install Intel® Distribution of OpenVINO™ Toolkit 2021.4.1 release along with its dependencies from ([https://software.intel.com/en-us/openvino-toolkit/download](https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html)). @@ -61,14 +61,14 @@ Since TensorFlow packages available in [PyPi](https://pypi.org) are built with C 5. Install `openvino-tensorflow`. Based on your Python version, choose the appropriate package below: - pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp36-cp36m-linux_x86_64.whl + pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp36-cp36m-linux_x86_64.whl or - pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp37-cp37m-linux_x86_64.whl + pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp37-cp37m-linux_x86_64.whl or - pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp38-cp38-linux_x86_64.whl + pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp38-cp38-linux_x86_64.whl diff --git a/docs/INSTALL_cn.md b/docs/INSTALL_cn.md index 1239e485b..8466c46cb 100644 --- a/docs/INSTALL_cn.md +++ b/docs/INSTALL_cn.md @@ -45,15 +45,15 @@ English | [简体中文](./INSTALL_cn.md) 2. 根据您的 Python 版本安装 `TensorFlow`,您可以使用 -D_GLIBCXX_USE_CXX11_ABI=1 构建 [TensorFlow from source](https://github.com/openvinotoolkit/openvino_tensorflow/blob/master/docs/BUILD_cn.md#tensorflow) 或按照以下说明使用适当的包: - pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl + pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl or - pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl + pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp37-cp37m-manylinux2010_x86_64.whl or - pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl + pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl 3. 下载并安装英特尔® OpenVINO™ Toolkit 2021.4.1 发行版及其依赖项 ([https://software.intel.com/en-us/openvino-toolkit/download](https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html)). @@ -63,14 +63,14 @@ English | [简体中文](./INSTALL_cn.md) 5. 安装“openvino-tensorflow”,根据您的 Python 版本,在下面选择合适的包: - pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp36-cp36m-linux_x86_64.whl + pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp36-cp36m-linux_x86_64.whl or - pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp37-cp37m-linux_x86_64.whl + pip3.7 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp37-cp37m-linux_x86_64.whl or - pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp38-cp38-linux_x86_64.whl + pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp38-cp38-linux_x86_64.whl diff --git a/docs/cloud_instructions/AWS_instructions.md b/docs/cloud_instructions/AWS_instructions.md index 8e58d0702..dc325873a 100644 --- a/docs/cloud_instructions/AWS_instructions.md +++ b/docs/cloud_instructions/AWS_instructions.md @@ -51,7 +51,7 @@ chmod 400 the *.pem key. (myenv) ubuntu@ip-10-0-0-123:~$ python3 -c "import tensorflow as tf; print('TensorFlow version: ',tf.__version__); import openvino_tensorflow; print(openvino_tensorflow.__version__)" TensorFlow version: 2.5.1 -OpenVINO integration with TensorFlow version: b'1.0.0' +OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/docs/cloud_instructions/AWS_instructions_cn.md b/docs/cloud_instructions/AWS_instructions_cn.md index 1fbe2f97d..c22441315 100644 --- a/docs/cloud_instructions/AWS_instructions_cn.md +++ b/docs/cloud_instructions/AWS_instructions_cn.md @@ -52,7 +52,7 @@ chmod 400 the *.pem key. (myenv) ubuntu@ip-10-0-0-123:~$ python3 -c "import tensorflow as tf; print('TensorFlow version: ',tf.__version__); import openvino_tensorflow; print(openvino_tensorflow.__version__)" TensorFlow version: 2.5.1 -OpenVINO integration with TensorFlow version: b'1.0.0' +OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/docs/cloud_instructions/Azure_instructions.md b/docs/cloud_instructions/Azure_instructions.md index 8a9b0a87d..b6ddc0dee 100644 --- a/docs/cloud_instructions/Azure_instructions.md +++ b/docs/cloud_instructions/Azure_instructions.md @@ -47,7 +47,7 @@ $ sudo pip3 install -U openvino-tensorflow ```bash azureuser@tf-u26:~$ python3 -c "import tensorflow as tf; print('TensorFlow version: ',tf.__version__); import openvino_tensorflow; print(openvino_tensorflow.__version__)" TensorFlow version: 2.5.1 -OpenVINO integration with TensorFlow version: b'1.0.0' +OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/docs/cloud_instructions/Azure_instructions_cn.md b/docs/cloud_instructions/Azure_instructions_cn.md index fc57b8afa..4defc0e30 100644 --- a/docs/cloud_instructions/Azure_instructions_cn.md +++ b/docs/cloud_instructions/Azure_instructions_cn.md @@ -49,7 +49,7 @@ $ sudo pip3 install -U openvino-tensorflow ```bash azureuser@tf-u26:~$ python3 -c "import tensorflow as tf; print('TensorFlow version: ',tf.__version__); import openvino_tensorflow; print(openvino_tensorflow.__version__)" TensorFlow version: 2.5.1 -OpenVINO integration with TensorFlow version: b'1.0.0' +OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/docs/site/main.js b/docs/site/main.js index a99926de8..cace2cf5b 100644 --- a/docs/site/main.js +++ b/docs/site/main.js @@ -1,6 +1,6 @@ const combination = new Map([ - ["000000", "# For Python3.7 and Python3.8 change the versions in the links appropriately , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp36-cp36m-manylinux2014_x86_64.whl , Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], - ["000100", " pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp38-cp38-linux_x86_64.whl , pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl , Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], + ["000000", "# For Python3.7 and Python3.8 change the versions in the links appropriately , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp36-cp36m-manylinux2014_x86_64.whl , Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], + ["000100", " pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp38-cp38-linux_x86_64.whl , pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl , Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], ["001100", " Mac OS not yet supported for VAD-M"], ["000001", " pip3 install pip==21.0.1,pip3 install tensorflow==2.5.1,pip3 -U install openvino-tensorflow"], ["000101", " pip3 install pip==21.0.1,pip3 install tensorflow==2.5.1,pip3 -U install openvino-tensorflow"], @@ -8,8 +8,8 @@ const combination = new Map([ ["010001", "pip3 install -U openvino-tensorflow"], ["010101", "pip3 install -U openvino-tensorflow"], ["011101", "pip3 install -U openvino-tensorflow"], - ["100000", "# For Python3.7 and Python3.8 change the versions in the links appropriately , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp36-cp36m-manylinux2014_x86_64.whl , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], - ["100100", " pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/openvino_tensorflow_abi1-1.0.0-cp38-cp38-linux_x86_64.whl , pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.0/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], + ["100000", "# For Python3.7 and Python3.8 change the versions in the links appropriately , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp36-cp36m-manylinux2010_x86_64.whl , pip3.6 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp36-cp36m-manylinux2014_x86_64.whl , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], + ["100100", " pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/openvino_tensorflow_abi1-1.0.1-cp38-cp38-linux_x86_64.whl , pip3.8 install https://github.com/openvinotoolkit/openvino_tensorflow/releases/download/v1.0.1/tensorflow_abi1-2.5.1-cp38-cp38-manylinux2010_x86_64.whl , source $INTEL_OPENVINO_DIR/bin/setupvars.sh"], ["101100", " Mac OS not yet supported for VAD-M"], ["000010", " Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline ,python3 build_ovtf.py --use_openvino_from_location=$INTEL_OPENVINO_DIR --cxx11_abi_version=1"], ["000110", " Download Intel® Distribution of OpenVINO™ Toolkit Link-https://software.intel.com/content/www/us/en/develop/tools/openvino-toolkit/download.html?operatingsystem=linux&distributions=webdownload&version=2021%203%20(latest)&options=offline ,python3 build_ovtf.py --use_openvino_from_location=$INTEL_OPENVINO_DIR --cxx11_abi_version=1"], diff --git a/openvino_tensorflow/version.cc b/openvino_tensorflow/version.cc index 6ed558a9d..ee2698be9 100644 --- a/openvino_tensorflow/version.cc +++ b/openvino_tensorflow/version.cc @@ -16,7 +16,7 @@ #define OV_TF_MAJOR_VERSION 1 #define OV_TF_MINOR_VERSION 0 -#define OV_TF_PATCH_VERSION 0 +#define OV_TF_PATCH_VERSION 1 // The version suffix is used for pre-release version numbers // For example before v0.7.0 we may do a pre-release i.e., a release diff --git a/python/README.md b/python/README.md index bdc714af9..d9247b2b4 100644 --- a/python/README.md +++ b/python/README.md @@ -42,7 +42,7 @@ To check if **OpenVINO™ integration with TensorFlow** is properly installed, r This should produce an output like: TensorFlow version: 2.5.1 - OpenVINO integration with TensorFlow version: b'1.0.0' + OpenVINO integration with TensorFlow version: b'1.0.1' OpenVINO version used for this build: b'2021.4.1' TensorFlow version used for this build: v2.5.1 CXX11_ABI flag used for this build: 0 diff --git a/python/setup.in.py b/python/setup.in.py index a53f746f7..772830d66 100644 --- a/python/setup.in.py +++ b/python/setup.in.py @@ -49,7 +49,7 @@ def finalize_options(self): setup( name='openvino_tensorflow', - version='1.0.0', + version='1.0.1', description='OpenVINO™ integration with TensorFlow', long_description=long_description, long_description_content_type="text/markdown",