Tobias Raabe
Tobias Raabe
* Hugo Jupyter version: 1.0.2 * Python version: 3.6.4 * Operating System: Windows ### Description When I run ``fab serve``, create a new notebook named ``hello.ipynb``, create some content, save...
#### Code Sample, a copy-pastable example  #### Problem description I don't know how this error can be reproduced, but it occurred - while running workflows with many tasks -...
#292 xfailed a couple of tests on Windows which might be resolved with https://github.com/Textualize/rich/issues/2411.
#### Is your feature request related to a problem? #253 added support for `pyproject.toml`. With v0.3 or v1 we will deprecate all ini formats. #### Describe the solution you'd like...
Closes #224. #### Is your feature request related to a problem? #229 implements a more intuitive approach to parametrizations for v0.2 which is based on loops. It will likely render...
#### Is your feature request related to a problem? rich reworked their svg export in their latest versions, e.g. 12.4.1. #### Describe the solution you'd like Recreate all svgs with...
#### Is your feature request related to a problem? When a node cannot be collected, a long traceback is shown. #### Describe the solution you'd like Instead provide just the...
#### Is your feature request related to a problem? - The configuration is a big dictionary which is created by merging cli options, options in the configuration file and default...
Would close #231. #### Changes This PR attemps to replace pytask's internal settings handling with typed-settings. typed-settings would take-over - Finding the configuration files. - Reading, parsing, consolidating the configuration...
### Workarounds `typing.NamedTuple` or `collections.namedtuple` can be used to achieve named arguments per iteration of the parametrization. ```python from pathlib import Path from typing import NamedTuple class Task(NamedTuple): depends_on: Path...