Skip to content

Commit da82449

Browse files
authored
Merge branch 'master' into remove-shortbread
2 parents 37163b3 + bc05a58 commit da82449

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v2.59.0 (2021-09-01)
4+
5+
### Features
6+
7+
* Add KIX account for SM XGBoost 1.2-2 and 1.3-1
8+
9+
### Bug Fixes and Other Changes
10+
11+
* revert #2572 and address #2611
12+
313
## v2.58.0 (2021-08-31)
414

515
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.58.1.dev0
1+
2.59.1.dev0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def read_version():
5151
"local": [
5252
"urllib3>=1.21.1,!=1.25,!=1.25.1",
5353
"docker-compose>=1.25.2",
54+
"docker==5.0.0",
5455
"PyYAML>=5.3, <6", # PyYAML version has to match docker-compose requirements
55-
"psutil",
5656
],
5757
"scipy": ["scipy>=0.19.0"],
5858
}

src/sagemaker/image_uri_config/xgboost.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@
166166
"ap-east-1": "651117190479",
167167
"ap-northeast-1": "354813040037",
168168
"ap-northeast-2": "366743142698",
169+
"ap-northeast-3": "867004704886",
169170
"ap-south-1": "720646828776",
170171
"ap-southeast-1": "121021644041",
171172
"ap-southeast-2": "783357654285",
@@ -195,6 +196,7 @@
195196
"ap-east-1": "651117190479",
196197
"ap-northeast-1": "354813040037",
197198
"ap-northeast-2": "366743142698",
199+
"ap-northeast-3": "867004704886",
198200
"ap-south-1": "720646828776",
199201
"ap-southeast-1": "121021644041",
200202
"ap-southeast-2": "783357654285",

src/sagemaker/local/image.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,8 @@
3131
import tempfile
3232

3333
from distutils.spawn import find_executable
34-
from signal import SIGTERM
3534
from threading import Thread
3635

37-
import psutil
3836
from six.moves.urllib.parse import urlparse
3937

4038
import sagemaker
@@ -843,8 +841,6 @@ def run(self):
843841

844842
def down(self):
845843
"""Placeholder docstring"""
846-
for process in psutil.Process(self.process.pid).children():
847-
process.send_signal(SIGTERM)
848844
self.process.terminate()
849845

850846

0 commit comments

Comments
 (0)