v0.2.0
[v0.2.0] - 2023-11-16
Changed
-
Ensure
workdir
is an absolute path
(#54). -
When a
workdir
is set for aTask
theworkdir
will no longer be removed
by default (#51). That is,
thesave_workdir
argument toTask
constructor now defaults toNone
, and
if left asNone
the default behavior is now conditional on whether or not a
workdir
is specified.- If
workdir
isNone
, a temp directory will be created andsave_workdir
will default toFalse
(remove working directory). - If a
workdir
is specified, thensave_workdir
will default toTrue
(keep working directory).
In either case, an explicit
True
orFalse
value forsave_workdir
will
take precedence. - If