From 46bf82009a0e111a4c2f623caebe08db069d34c0 Mon Sep 17 00:00:00 2001 From: Ajay Karpur Date: Fri, 21 Aug 2020 10:44:14 -0700 Subject: [PATCH 1/2] doc: Clarify removals in v2 --- doc/v2.rst | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/v2.rst b/doc/v2.rst index cecf8b8672..57af3abe57 100644 --- a/doc/v2.rst +++ b/doc/v2.rst @@ -25,7 +25,7 @@ Breaking Changes This section is for major changes that may require updates to your SageMaker Python SDK code. For the full list of changes, see the `CHANGELOG `_. -Deprecations +Removals ============ Python 2 Support @@ -34,7 +34,7 @@ Python 2 Support This library is no longer supported for Python 2. Please upgrade to Python 3 if you haven't already. -Deprecate Legacy TensorFlow +Remove Legacy TensorFlow --------------------------- TensorFlow versions 1.4-1.10 and some variations of versions 1.11-1.12 @@ -48,14 +48,14 @@ For more information, see `Upgrade from Legacy TensorFlow Support `_). +(For the previous implementation of that class, see `Remove Legacy TensorFlow <#remove-legacy-tensorflow>`_). Predictors ---------- @@ -331,7 +331,7 @@ TensorFlow Serving Predictor ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``sagemaker.tensorflow.serving.Predictor`` has been renamed to :class:`sagemaker.tensorflow.model.TensorFlowPredictor`. -(For the previous implementation of that class, see `Deprecate Legacy TensorFlow <#deprecate-legacy-tensorflow>`_). +(For the previous implementation of that class, see `Remove Legacy TensorFlow <#remove-legacy-tensorflow>`_). Inputs From 7a7f71b0a705da55a067f43aa909450d394ca0de Mon Sep 17 00:00:00 2001 From: Ajay Karpur Date: Fri, 21 Aug 2020 10:55:58 -0700 Subject: [PATCH 2/2] address new pylint violations --- .pylintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pylintrc b/.pylintrc index e099e8f37b..07c3eb20df 100644 --- a/.pylintrc +++ b/.pylintrc @@ -92,6 +92,8 @@ disable= too-many-lines, too-many-locals, useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported. + super-with-arguments, + raise-missing-from, [REPORTS] # Set the output format. Available formats are text, parseable, colorized, msvs