Releases: smarie/python-doit-api
Releases · smarie/python-doit-api
0.8.0 - Multiline command actions
- Multiline string command actions are now interpreted as to be concatenated into the same shell command using
&(windows) or;(linux). This allows several commands to leverage each other, for exampleconda activate+ some python execution. Fixes #6
See documentation page for details.
0.7.0 - New `@cmdtask`
- New
@cmdtasksimilar to@pytaskbut to create shell commands. Fixes #5
See documentation page for details.
0.6.1 - New `doit_config` + API change to support multiprocessing
-
New
doit_config()utility method to generate a validDOIT_CONFIGin its caller module. Fixes #1 -
The
taskAPI was not compliant with thenum_processoption in the configuration, enabling multiprocess execution of doit. In order to fix the issue (an issue with pickle),taskwas split into two:@pytaskis the decorator, andtaskis the creator. Fixed #3
See documentation page for details.
0.5.0 - First public version
- Initial release with
task,taskgen,title_with_actionsandwhy_am_i_running.
See documentation page for details.