Skip to content

Commit b8d8909

Browse files
authored
Merge pull request #1 from illagrenan/tf-1.5
Add support for Tensorflow 1.5.0
2 parents 941bdb7 + 47070e5 commit b8d8909

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Supported versions of Tensorflow
3838
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
3939
| ``tensorflow~=1.4.0`` | ``pip install 'tensorflow-seving-api-python3~=1.4.0'`` | `https://pypi.org/.../1.4.0 <https://pypi.org/project/tensorflow-serving-api/1.4.0/>`_ |
4040
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
41-
| ``tensorflow~=1.5.0`` | TBA | `https://pypi.org/.../1.5.0 <https://pypi.org/project/tensorflow-serving-api/1.5.0/>`_ |
41+
| ``tensorflow~=1.5.0`` | ``pip install 'tensorflow-seving-api-python3~=1.5.0'`` | `https://pypi.org/.../1.5.0 <https://pypi.org/project/tensorflow-serving-api/1.5.0/>`_ |
4242
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+
4343
| ``tensorflow~=1.6.0`` | TBA | `https://pypi.org/.../1.6.0 <https://pypi.org/project/tensorflow-serving-api/1.6.0/>`_ |
4444
+-----------------------+--------------------------------------------------------+----------------------------------------------------------------------------------------+

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='tensorflow-serving-api-python3',
10-
version='1.4.0',
10+
version='1.5.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.4.0'
21+
'tensorflow>=1.5.0'
2222
],
2323
python_requires='~=3.5',
2424
include_package_data=True,

tensorflow_serving/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
# -*- encoding: utf-8 -*-
2-
# ! python3

0 commit comments

Comments
 (0)