Till Hoffmann
Till Hoffmann
Thanks for the great plugin. It would be useful to be able to snooze items (i.e. temporarily hide them until a given date). This seems relatively straightforward from an implementation...
I would like to use a schema `base.json` that defines basic properties together with a schema `derived.json` which adds further validation to the base schema. The derived schema needs to...
This PR updates file dependencies in the doit database even if the task is already up to date. The change improves performance for large files under certain circumstances. Consider the...
This PR fixes #254 by changing `file_dep` to a list rather than using a set, ensuring the order of dependencies is preserved.
It would be great to support wildcards for the list command. E.g. consider the following `dodo.py` file. ```python def task_hello(): return {"actions": [lambda: None]} ``` Running the task with a...
I'd like to use the networkit cython API from a third-party project to generate random graphs without the python overhead. Is that possible? I've naively tried `cimport networkit` in my...
[FR] Alternative parametrisations for numerical stability (e.g. for NegativeBinomial distribution)
Some of the distributions provide multiple different parametrisation options. For example, the [`MultivariateNormal`](https://pytorch.org/docs/stable/distributions.html#torch.distributions.multivariate_normal.MultivariateNormal) distribution can be parametrised in terms of covariance, precision, or Cholesky decomposition of the covariance matrix. However,...
This PR adds return type annotations for cpdef functions if the `base_type.name` is available (fixes #4756). It also fixes a typo I introduced in #4751 that doesn't warrant it's own...
I would like to access return type hints for `cpdef` functions for static type validation. This works as expected for `def` functions and arguments for both , thank you! It...