Skip to content

Commit 684dfb3

Browse files
committed
Merge remote-tracking branch 'public/master' into pytorch-release
2 parents 9b75787 + 2e2e397 commit 684dfb3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGELOG.rst

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

5-
1.4.2dev
6-
========
5+
1.4.2
6+
=====
77

88
* bug-fix: Unit Tests: Improve unit test runtime
99
* bug-fix: Estimators: Fix attach for LDA

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can install from source by cloning this repository and issuing a pip install
4949

5050
git clone https://github.com/aws/sagemaker-python-sdk.git
5151
python setup.py sdist
52-
pip install dist/sagemaker-1.4.1.tar.gz
52+
pip install dist/sagemaker-1.4.2.tar.gz
5353

5454
Supported Python versions
5555
~~~~~~~~~~~~~~~~~~~~~~~~~

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.5.dev",
26+
version="1.5.0",
2727
description="Open source library for training and deploying models on Amazon SageMaker.",
2828
packages=find_packages('src'),
2929
package_dir={'': 'src'},

src/sagemaker/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ def expand_role(self, role):
679679
if '/' in role:
680680
return role
681681
else:
682-
return boto3.resource("iam").Role(role).arn
682+
return self.boto_session.resource('iam').Role(role).arn
683683

684684
def get_caller_identity_arn(self):
685685
"""Returns the ARN user or role whose credentials are used to call the API.

0 commit comments

Comments
 (0)