Skip to content

Commit 90c4621

Browse files
authored
Merge pull request #3 from illagrenan/tf-1.7
Add support for Tensorflow 1.7.0
2 parents 948ab85 + 299143a commit 90c4621

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Supported versions of Tensorflow
4242
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
4343
| ``tensorflow~=1.6.0`` | ``pip install 'tensorflow-seving-api-python3~=1.6.0'`` | `https://pypi.org/.../1.6.0 <https://pypi.org/project/tensorflow-serving-api/1.6.0/>`_ |
4444
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
45-
| ``tensorflow~=1.7.0`` | TBA | `https://pypi.org/.../1.7.0 <https://pypi.org/project/tensorflow-serving-api/1.7.0/>`_ |
45+
| ``tensorflow~=1.7.0`` | ``pip install 'tensorflow-seving-api-python3~=1.7.0'`` | `https://pypi.org/.../1.7.0 <https://pypi.org/project/tensorflow-serving-api/1.7.0/>`_ |
4646
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
4747

4848

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='tensorflow-serving-api-python3',
10-
version='1.6.0',
10+
version='1.7.0',
1111
description="""*UNOFFICIAL* TensorFlow Serving API libraries for Python3""",
1212
long_description=io.open("README.rst", 'r', encoding="utf-8").read(),
1313
url='https://github.com/illagrenan/tensorflow-serving-api-python3',
@@ -18,7 +18,7 @@
1818
packages=['tensorflow_serving'],
1919
install_requires=[
2020
'grpcio>=1.7.0',
21-
'tensorflow>=1.6.0'
21+
'tensorflow>=1.7.0'
2222
],
2323
python_requires='~=3.5',
2424
include_package_data=True,

0 commit comments

Comments
 (0)