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 @@ -53,7 +53,6 @@ def read_version():
53
53
"docker-compose>=1.25.2" ,
54
54
"docker!=5.0.1" ,
55
55
"PyYAML>=5.3, <6" , # PyYAML version has to match docker-compose requirements
56
- "psutil" ,
57
56
],
58
57
"scipy" : ["scipy>=0.19.0" ],
59
58
}
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