Skip to content

Commit 741b0bd

Browse files
authored
fix: Bump version of sagemaker-training for typing fix (#365)
1 parent 3f26182 commit 741b0bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _parse_args():
5454
# Run docker-login so we can pull the cached image
5555
login_cmd = subprocess.check_output(
5656
'aws ecr get-login --no-include-email --registry-id {}'.format(args.account).split())
57-
print('Executing docker login command: '.format(login_cmd))
57+
print('Executing docker login command: {}'.format(login_cmd))
5858
subprocess.check_call(login_cmd.split())
5959

6060
for arch in ['cpu', 'gpu']:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def read_version():
6363
'Programming Language :: Python :: 3.7',
6464
],
6565

66-
install_requires=['sagemaker-training>=3.5.0', 'numpy', 'scipy', 'sklearn',
66+
install_requires=['sagemaker-training>=3.5.1', 'numpy', 'scipy', 'sklearn',
6767
'pandas', 'Pillow', 'h5py'],
6868
extras_require={
6969
'test': test_dependencies,

0 commit comments

Comments
 (0)