diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c060e1f7d1..cc278a812d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ========= +1.9.3.1 +======= + +* doc-fix: fix rst warnings in README.rst + 1.9.3 ===== diff --git a/README.rst b/README.rst index 325ee834e7..f60d365373 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -.. image:: branding/icon/sagemaker-banner.png +.. image:: https://github.com/aws/sagemaker-python-sdk/raw/master/branding/icon/sagemaker-banner.png :height: 100px :alt: SageMaker @@ -40,7 +40,7 @@ Table of Contents Installing the SageMaker Python SDK ----------------------------- +----------------------------------- The SageMaker Python SDK is built to PyPI and can be installed with pip as follows: @@ -91,8 +91,8 @@ To run the integration tests, the following prerequisites must be met 1. Access to an AWS account to run the tests on 2. AWS account credentials available to boto3 clients used in the tests 3. The AWS account has an IAM role named :code:`SageMakerRole` -4. The libraries listed in the ``extra_require`` object in in ``setup.py`` for ``test`` are installed. You can do this by running the following command: - :code:`pip install --upgrade .[test]` +4. The libraries listed in the ``extras_require`` object in ``setup.py`` for ``test`` are installed. + You can do this by running the following command: :code:`pip install --upgrade .[test]` You can run integ tests by issuing the following command: @@ -142,7 +142,7 @@ The following sections of this document explain how to use the different estimat Using Estimators ---------------- +---------------- Here is an end to end example of how to use a SageMaker Estimator: diff --git a/doc/conf.py b/doc/conf.py index dee71df4f8..b349cfaf68 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -32,7 +32,7 @@ def __getattr__(cls, name): 'numpy', 'scipy', 'scipy.sparse'] sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) -version = '1.2.4' +version = '1.9.3.1' project = u'sagemaker' # Add any Sphinx extension module names here, as strings. They can be extensions diff --git a/setup.py b/setup.py index 96890b78ea..632b2114af 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read(fname): setup(name="sagemaker", - version="1.9.3", + version="1.9.3.1", description="Open source library for training and deploying models on Amazon SageMaker.", packages=find_packages('src'), package_dir={'': 'src'},