v0.1.6
Highlights
This release features the new @pytask.mark.task
decorator which allows to mark functions as tasks without requiring the task_
prefix. It also accepts an optional name
parameter to rename the task to something else than the function name.
@pytask.mark.task
def prepare_data():
pass
What's Changed
- Add guide on how to profile pytask. by @tobiasraabe in #191
- Add more figures to the documentation. by @tobiasraabe in #193
- Change demo in README.rst. by @tobiasraabe in #194
- Mention the two new cookiecutters more prominently. by @tobiasraabe in #196
- Fix skipif marker in the documentation. by @tobiasraabe in #198
- A better error message when paths are ambiguous on case-insensitive file systems. by @tobiasraabe in #199
- Mark arbitrary function as tasks with
@pytask.mark.task
. by @tobiasraabe in #200 - Test
_pytask.mark_utils
. by @tobiasraabe in #201 - Remove internal traceback frames from exceptions raised within pytask. by @tobiasraabe in #204
- Fix directory structure in the best practices guide on parametrizations. by @tobiasraabe in #208
Full Changelog: v0.1.5...v0.1.6