What's Changed
* Switched from rich progress to tqdm: no more exceptions due to mixing Live contexts
* New `create_task()` method for pipelime commands to manually update the progress
* Task created with `track()` and `create_task()` can be mixed and nested as needed
* Now you can embed a DAG withing a parent DAG!
- in the parent DAG set a node with the command `run`
- set the `nodes` of the nested graph, eg, by `$import`-ing the sub-graph yaml
- `pipelime draw` will show you the sub-graph as a single block with its I/O ports
- the Piper Watcher will track the nodes in the sub-graph as usual (and the progress of the full graph as well!)
* Improved typing visualization for `pipelime help`: mappings, sequence, enums (even nested)
* Fixed using `Path` fields in commands: now they are always transformed to absolute paths in posix format, so they can be attached to other `Path`s or command interfaces
* `InputDatasetInterface` and `OutputDatasetInterface` can now be built from `Path` object (previously only mapping, strings or bytes)
**Full Changelog**: https://github.com/eyecan-ai/pipelime-python/compare/v1.1.3...v1.2.0