Skip to content

v0.2.0

Compare
Choose a tag to compare
@philvarner philvarner released this 16 Nov 20:20
· 72 commits to main since this release
a6aaebc

[v0.2.0] - 2023-11-16

Changed

  • Ensure workdir is an absolute path
    (#54).

  • When a workdir is set for a Task the workdir will no longer be removed
    by default (#51). That is,
    the save_workdir argument to Task constructor now defaults to None, and
    if left as None the default behavior is now conditional on whether or not a
    workdir is specified.

    • If workdir is None, a temp directory will be created and save_workdir
      will default to False (remove working directory).
    • If a workdir is specified, then save_workdir will default to True
      (keep working directory).

    In either case, an explicit True or False value for save_workdir will
    take precedence.