Skip to content

Commit

Permalink
release: v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Aug 27, 2020
1 parent a68d77b commit 345426d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion datatorch/agent/pipelines/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ def check_for_output(self, string: str) -> bool:
async def run_cmd(self, command: str, wait: bool = True):
""" Runs a command using asyncio """
process = await asyncio.create_subprocess_shell(
command, shell=True, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.STDOUT
command,
shell=True,
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
)
if wait:
await process.wait()
Expand Down
1 change: 0 additions & 1 deletion datatorch/api/scripts/import_coco.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ def import_coco(
)

if created_segmentation or created_bbox:
# dt_file.add(dt_anno)
new_annotations.append(annotation)

if len(new_annotations) > 0:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="datatorch",
version="0.2.4",
version="0.2.5",
description="A CLI and library for interacting with DataTorch",
author="DataTorch",
author_email="[email protected]",
Expand Down

0 comments on commit 345426d

Please sign in to comment.