Skip to content

Commit edfb44d

Browse files
kapilkd13manu-chroma
authored andcommitted
pip installing cwltool instead of setup.py inside appveyor
1 parent 533b738 commit edfb44d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ install:
3131
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
3232

3333
build_script:
34-
- "%CMD_IN_ENV% python setup.py install"
34+
- "%CMD_IN_ENV% pip install ."
3535

3636

3737
test_script:

cwltool/builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def __init__(self): # type: () -> None
6262
self.job_script_provider = None # type: Any
6363

6464
def build_job_script(self, commands):
65-
# type: (Union[List[str],List[bytes]]) -> Text
66-
build_job_script_method = getattr(self.job_script_provider, "build_job_script", None) # type: Callable[[Builder, List[str]], Text]
65+
# type: (Union[List[str],List[unicode]]) -> Text
66+
build_job_script_method = getattr(self.job_script_provider, "build_job_script", None) # type: Callable[[Builder, Union[List[str],List[unicode]]], Text]
6767
if build_job_script_method:
6868
return build_job_script_method(self, commands)
6969
else:

cwltool/job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def run(self, pull_image=True, rm_container=True,
424424

425425

426426
def _job_popen(
427-
commands, # type: Union[List[str],List[bytes]]
427+
commands, # type: Union[List[str],List[unicode]]
428428
stdin_path, # type: Text
429429
stdout_path, # type: Text
430430
stderr_path, # type: Text

0 commit comments

Comments
 (0)