diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cc278a812d..05e2a220ba 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ========= +1.10.0 +====== + +* feature: add support for TensorFlow 1.10.0 + 1.9.3.1 ======= diff --git a/README.rst b/README.rst index f60d365373..58fba5d2f0 100644 --- a/README.rst +++ b/README.rst @@ -256,7 +256,7 @@ TensorFlow SageMaker Estimators By using TensorFlow SageMaker ``Estimators``, you can train and host TensorFlow models on Amazon SageMaker. -Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``. +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``. We recommend that you use the latest supported version, because that's where we focus most of our development efforts. diff --git a/setup.py b/setup.py index 632b2114af..ca496e6001 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(fname): setup(name="sagemaker", - version="1.9.3.1", + version="1.9.4", description="Open source library for training and deploying models on Amazon SageMaker.", packages=find_packages('src'), package_dir={'': 'src'}, diff --git a/src/sagemaker/tensorflow/README.rst b/src/sagemaker/tensorflow/README.rst index 10b8846d98..88b08ed54b 100644 --- a/src/sagemaker/tensorflow/README.rst +++ b/src/sagemaker/tensorflow/README.rst @@ -6,7 +6,7 @@ TensorFlow SageMaker Estimators allow you to run your own TensorFlow training algorithms on SageMaker Learner, and to host your own TensorFlow models on SageMaker Hosting. -Supported versions of TensorFlow: ``1.4.1``, ``1.5.0``, ``1.6.0``, ``1.7.0``, ``1.8.0``, ``1.9.0``. +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``. Training with TensorFlow ~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/src/sagemaker/tensorflow/defaults.py b/src/sagemaker/tensorflow/defaults.py index 412848a631..3150b7c5d4 100644 --- a/src/sagemaker/tensorflow/defaults.py +++ b/src/sagemaker/tensorflow/defaults.py @@ -12,4 +12,4 @@ # language governing permissions and limitations under the License. from __future__ import absolute_import -TF_VERSION = '1.9' +TF_VERSION = '1.10' diff --git a/tests/conftest.py b/tests/conftest.py index 6d1556f337..aceaaa75e4 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -80,7 +80,8 @@ def sagemaker_local_session(boto_config): @pytest.fixture(scope='module', params=['1.4', '1.4.1', '1.5', '1.5.0', '1.6', '1.6.0', - '1.7', '1.7.0', '1.8', '1.8.0', '1.9', '1.9.0']) + '1.7', '1.7.0', '1.8', '1.8.0', '1.9', '1.9.0', + '1.10', '1.10.0']) def tf_version(request): return request.param