Skip to content

Commit 38cb94d

Browse files
committed
removed use of find_executable()
1 parent 161d316 commit 38cb94d

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

python/soma_workflow/gui/workflowGui.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
# Imports
55
#-----------------------------------------------------------------------------
66

7-
from __future__ import with_statement, print_function
8-
from __future__ import absolute_import
9-
107
import time
118
import threading
129
import os
@@ -18,6 +15,7 @@
1815
from soma_workflow import connection
1916
import sys
2017
import traceback
18+
import shutil
2119
# import cProfile
2220
# import pdb
2321

@@ -3931,9 +3929,8 @@ def graph_visibility_changed(self, visible):
39313929
def printWorkflow(self):
39323930

39333931
import tempfile
3934-
from distutils.spawn import find_executable
39353932

3936-
if not find_executable("dot"):
3933+
if not shutil.which("dot"):
39373934
print("Unable to print workflow because dot executable is not",
39383935
"available.", file = sys.stderr)
39393936
return None

python/soma_workflow/schedulers/pbspro_scheduler.py

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
from __future__ import with_statement, print_function
4-
from __future__ import absolute_import
5-
63
'''
74
organization: I2BM, Neurospin, Gif-sur-Yvette, France
85
@@ -14,16 +11,14 @@
1411
import logging
1512
import os
1613
import socket
17-
import six
1814
import json
1915
import soma_workflow.constants as constants
2016
from soma_workflow.errors import DRMError, ExitTimeoutException
2117
from soma_workflow import configuration
22-
from soma_workflow.configuration import Configuration
2318
import tempfile
2419
from soma_workflow import subprocess
2520
import time
26-
import distutils.spawn
21+
import shutil
2722

2823

2924
class JobTemplate(object):
@@ -59,7 +54,7 @@ def build_pbs_script(self, script_file=None):
5954
f.write('#PBS -q %s\n' % self.queue)
6055
# if self.env:
6156
# var = ','.join(['"%s=%s"' % (k, v.replace('"', '\\"'))
62-
# for k, v in six.iteritems(self.env)])
57+
# for k, v in self.env.items()])
6358
# f.write('#PBS -v %s\n' % var)
6459
if self.nativeSpecification:
6560
native_spec = self.nativeSpecification
@@ -186,7 +181,7 @@ def out_of_container_command():
186181
None)
187182
if out_container is not None:
188183
return out_container # cached
189-
if distutils.spawn.find_executable('qstat') \
184+
if shutil.which('qstat') \
190185
or 'CASA_HOST_DIR' not in os.environ:
191186
out_container = []
192187
else:
@@ -708,7 +703,7 @@ def get_job_exit_info(self, scheduler_job_id):
708703

709704
self.logger.info(" ==> res_status=" + repr(res_status))
710705
res_resourceUsage = u''
711-
for k, v in six.iteritems(resource_usage):
706+
for k, v in resource_usage.items():
712707
res_resourceUsage = res_resourceUsage + \
713708
k + u'=' + str(v) + u' '
714709

0 commit comments

Comments
 (0)