Alpha Release #7
Pre-release
Pre-release
Please note: this release contains breaking changes:
- All the runners (
AsyncTasks
andSyncTasks
) are now ingarcon.runner
under the respective names ofSync
andAsync
(if you follow the Google Python convention, you will always write:runner.Sync
.)
New features:
- Added context filling. Using the decorator in
task.py
,@task.decorate()
will allow you to fill your tasks with information from the context. If you use this decorator: you can omitactivity
andcontext
is not allowed anymore as a param.