v0.2.3
v0.2.3 August 21, 2023
New features
donemethod in the PrismTask. This method allows user to skip tasks if certain, user-defined conditions are met. Like therunmethod, this method takestasksandhooksas arguments. The precise method definition is as follows:
from pathlib import Path
class PrismTask:
...
def done(self, tasks, hooks) --> bool:
return Path("<some output path>").is_file() # custom logic here!
...
Improvements / Bug Fixes
None.
Administrative changes
None.