File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ def read_version():
52
52
"urllib3>=1.21.1,!=1.25,!=1.25.1" ,
53
53
"docker-compose>=1.25.2" ,
54
54
"PyYAML>=5.3, <6" , # PyYAML version has to match docker-compose requirements
55
- "psutil" ,
56
55
],
57
56
"scipy" : ["scipy>=0.19.0" ],
58
57
}
Original file line number Diff line number Diff line change 31
31
import tempfile
32
32
33
33
from distutils .spawn import find_executable
34
- from signal import SIGTERM
35
34
from threading import Thread
36
35
37
- import psutil
38
36
from six .moves .urllib .parse import urlparse
39
37
40
38
import sagemaker
@@ -843,8 +841,6 @@ def run(self):
843
841
844
842
def down (self ):
845
843
"""Placeholder docstring"""
846
- for process in psutil .Process (self .process .pid ).children ():
847
- process .send_signal (SIGTERM )
848
844
self .process .terminate ()
849
845
850
846
You can’t perform that action at this time.
0 commit comments