Skip to content

Commit 61c5c11

Browse files
authored
Add support for tensorflow 1.10.0 and bump up version to 1.10.0 (#385)
1 parent f369661 commit 61c5c11

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
CHANGELOG
33
=========
44

5+
1.10.0
6+
======
7+
8+
* feature: add support for TensorFlow 1.10.0
9+
510
1.9.3.1
611
=======
712

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ TensorFlow SageMaker Estimators
256256

257257
By using TensorFlow SageMaker ``Estimators``, you can train and host TensorFlow models on Amazon SageMaker.
258258

259-
Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``.
259+
Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``, ``1.10.0``.
260260

261261
We recommend that you use the latest supported version, because that's where we focus most of our development efforts.
262262

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def read(fname):
2323

2424

2525
setup(name="sagemaker",
26-
version="1.9.3.1",
26+
version="1.9.4",
2727
description="Open source library for training and deploying models on Amazon SageMaker.",
2828
packages=find_packages('src'),
2929
package_dir={'': 'src'},

src/sagemaker/tensorflow/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TensorFlow SageMaker Estimators allow you to run your own TensorFlow
66
training algorithms on SageMaker Learner, and to host your own TensorFlow
77
models on SageMaker Hosting.
88

9-
Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``.
9+
Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``, ``1.10.0``.
1010

1111
Training with TensorFlow
1212
~~~~~~~~~~~~~~~~~~~~~~~~

src/sagemaker/tensorflow/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# language governing permissions and limitations under the License.
1313
from __future__ import absolute_import
1414

15-
TF_VERSION = '1.9'
15+
TF_VERSION = '1.10'

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ def sagemaker_local_session(boto_config):
8080

8181

8282
@pytest.fixture(scope='module', params=['1.4', '1.4.1', '1.5', '1.5.0', '1.6', '1.6.0',
83-
'1.7', '1.7.0', '1.8', '1.8.0', '1.9', '1.9.0'])
83+
'1.7', '1.7.0', '1.8', '1.8.0', '1.9', '1.9.0',
84+
'1.10', '1.10.0'])
8485
def tf_version(request):
8586
return request.param
8687

0 commit comments

Comments
 (0)