Skip to content

v0.2.3

Choose a tag to compare

@mtrivedi50 mtrivedi50 released this 22 Aug 01:45
· 59 commits to main since this release

v0.2.3 August 21, 2023

New features

  • done method in the PrismTask. This method allows user to skip tasks if certain, user-defined conditions are met. Like the run method, this method takes tasks and hooks as 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.